常見的js基礎題

2021-10-07 22:45:43 字數 615 閱讀 5150

string

number

boolean

undefined

null

symbol

bigint

基本資料型別按值操作,儲存到棧中

**物件**

普通物件{}

array【】

date

math

正則**函式**

function

引用資料型別按位址操作,儲存在堆中

typeof     typeod null 的結果是object  陣列,物件都是object

instanceof

constructor

object.prototype.tostring.call()

谷歌,360,等國產用的是webkit

火狐用的是gecko

ie用trident

var

let

const

impoort

class

function

常見js演算法題

author laifeipeng date 2019 02 21 17 50 13 last modified by laifeipeng last modified time 2019 02 21 18 12 27 1 判斷回文字串 法一 function palindrome str retu...

JS 常見手寫題

1,new 的過程 function mynew func if func.prototype null if typeof ret object typeof ret function ret null return res 2,實現json.stringify function jsonstri...

C基礎常見題

1 求兩個數m和n的最大公約數 輾轉相除法 include include int divisor int m,int n printf 最大公約數為 d n n return0 2 判斷是否為閏年 void isleap int year int main 3 將100 300之間的素數輸出 bo...