Template Literals 字串樣版
====
let name='弘弘';
alert(`我叫${name},你好嗎?` );
Arrow Functions 箭頭函數
====
setInterval(() => console.log(aa),1000); // 無參數,單一指令
.then(result=>{ // 有參數,多個指令});
console.log('looped');
alert('looped');
走訪陣列
====
let arr = [1, 2, 3];
for (let a of arr) {
console.log(a);
}
沒有留言:
張貼留言