取有餘數的值(單數)
1234567
const arr = [1, 2, 3, 4, 5];const filterArr = arr.filter(function(item) { return item % 2 // 只要結果為真值就會回傳})console.log(filterArr); // [ 1,3,5 ]
123456789
this 的指向為何var obj = { name: '小明', fn: function(params) { console.log(params, this, window, arguments); }}obj.fn(1, 2, 3); // 這邊 this 指向 obj
語法糖讓程式更加簡潔,有更高的可讀性。語法糖不會影響程式運作,邏輯與當前 JS 一致。
12345678
const apple = { name: '蘋果', fn: function() { return this.name; }}console.log(apple.fn());
直接將 fn: function() {} 改為 fn() {} 即可
fn: function() {}
fn() {}
KAY CHEN
學習筆記
Taiwan
文章
19
分類
6
標籤
17
閱讀筆記
vue
git