codecamp

ES5和ES6创建类的区别



/**
 * @Author: 魏青峰
 * @Date: 2019-01-16 17:37:49
 * @param {type} 
 * @return: 
 * @Description: ES5:类定义方式
 */
function Point(config){
  this._config = config;


  //操作当前对象的属性,属性可以覆盖原型
  this.toString2 =function(){console.log('2') };
  Point.prototype.toString2 =function(){console.log('3')};
}
//给原型添加方法
Point.prototype = {
  toString1() {
    console.log('1')
  },
  toValue1() {}
}
export {Point}




// ES6:类定义方式
/**
 * @Author: 魏青峰
 * @Date: 2019-01-16 17:37:28
 * @param {type} 
 * @return: 
 * @Description: ES6:类定义方式
 */
class Line{
  constructor(config){
    this._config = config;
    //操作当前对象的属性,属性可以覆盖原型
    this.toString=function(){ console.log('obj') }
  }


  toString(){
    console.log('prt')
  }
  toValue(){}


}
export {Line}
Object.defineProperty
XML,GPX解析器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Ueditor

My97 DatePicker

Dtree——Js树型控件

浏览系

无标题目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }