摘要:
E. Generator函数形式上,Generator 函数是一个普通函数,但是有两个特征。 一是,function关键字与函数名之间有一个星号; 二是,函数体内部使用yield表达式,定义不同的内部状态(yield在英语里的意思就是“产出”)。 function* helloWorldGenera 阅读全文
posted @ 2022-05-25 22:03
锦呀
阅读(311)
评论(0)
推荐(0)
摘要:
const target = { a: 1 }; const source1 = { b: 2 }; const source2 = { c: 3 }; assign(target, source1,source2); console.log(target); 阅读全文
posted @ 2022-05-25 22:02
锦呀
阅读(19)
评论(0)
推荐(0)