下列符合ES6规范的语法有
let x=10
const pi=3.1415926
let s=Symbol()
Object.assign(target,source1,source2)
function *helloWorld(){yield ‘hello’; yield ’world’;return ‘ending’}