1..object.assign()
object.assign()
方法用於將所有可列舉屬性的值從乙個或多個源物件複製到目標物件。它將返回目標物件。
const object1 = ;
const object2 = object.assign(, object1);
console.log(object2.c, object2.d);
// expected output: 3 5
2.給物件賦值
let obj = ;
obj.b=522
console.log(obj) //
3.object.keys(data)
傳入物件返回屬性名
4.object.freeze()
,
它做的事情是阻止這個物件在未來被修改。這實質上是將它的屬性都設為了常量,避免在未來出現狀態的 bug。
JS操作方法
一 map函式 可以接受函式作為引數 var staff staff.map function item 執行結果 abruzzi bajmine chris 二 filter函式 過濾陣列中滿足某些條件的元素 staff.filter function item 執行結果 name bajmine...
JS陣列的操作方法
var colors red blue green colors.length 計算陣列長度 array.isarray colors 檢測是否為陣列 colors.join 指定引號內的字串為分隔符 colors.push red green 推入陣列的最後 colors.pop 取得陣列的最後項...
js的dataTime操作方法
js的datatime操作方法 web開發中經常對時間進行處理操作,例如比較時間大小,時間的間隔,字串與時間之間的轉化等等。如何將字串轉時間物件。var s 2005 12 15 09 41 30 var d new date date.parse s.replace g,date常用的api va...