我正在尝试使用内联属性声明。下面的代码在babelJs网站上正常工作(检查实验选项输入),但它不能使用babel-cli。期望记录inlineAttribute。
/**
* Created by Ala on 25/02/2016.
*/
/**
* Class Human
*/
class Human{
inlineAttribute = 60;
/**
* @constructor
* @param name
*/
constructor(name){
this.name = name;
}
}
var Ala = new Human("Ala");
console.log (Ala.inlineAttribute);