null
變數被宣告並且被指定爲有意義的空值 null,通常用來明確地表示「沒有值」或「空物件」的狀態。null 的型別是物件。
型別: null 的型別是物...
閉包是什麼?
closure 函式可以存取其外部函式的變數,即使外部函式已經執行完畢並離開其作用域。可以存取到外部變數的原因在於: JavaScript 使用了...
前言
今天要解的題目是 Search Insert Position(搜尋插入位置)。
題目要求我們在一個已經排序好的陣列中找到目標數字的位置。
如果找到目...
原文題目You are given an m x n grid where each cell can have one of three values:...
.call跟.apply 都可以直接呼叫函式並且改變函式內 this 的指向,兩者最主要的差異是傳入的參數形式不同。
.call
定義:.call 方法會立即...
原文題目
Design a stack that supports push, pop, top, and retrieving the minimum ele...