cocos2d js 是否支持 javascript 的最新标准?我想在我的项目中使用它。
不知道 cocos 是否支持 ES6,但我尝试使用 ES6 将一个数组推入另一个数组:
array1.push(...array2);
这似乎有效。尽管如此,我认为 cocos2d-js 不需要 ES6,因为它是一个巨大的库,它提供了您需要的所有功能。
Cocos2d-js 支持 一些 ES6 功能但并非全部(例如支持:let、const、箭头函数、Array.prototype.find、Array.prototype.findIndex。不支持:默认参数、class、等)。
let
const
Array.prototype.find
Array.prototype.findIndex
class
你也可以用ES6转ES5(用Cocos2d-x论坛上的Babel). I found this,你可以看看