这种shorthand property是属于ES6还是ES5?
      
      
      
    
    const obj = {
  lukeSkywalker,
  anakinSkywalker,
  episodeOne: 1,
  twoJediWalkIntoACantina: 2,
  episodeThree: 3,
  mayTheFourth: 4
}
      3 回复
    
    第一次听说这个
ES2015
5的时候就有了把?
module.exports = {
	f1,
	f2,
	f3: fun3
};