js 基礎 Math 常用工具函式

2021-08-22 08:54:52 字數 976 閱讀 8152

1.math.pi 弧度轉角度、

2.math.random return [0,1)範圍的數

3.math.floor()/math.ceil() 向下/向上取整、

4.三角函式 math.sin/cos/tan

5.反三角函式 math.asin/acos/atan

6.角度弧度相互轉換、

7.math.atan2(y,x) 返回乙個座標(y,x)對應的角度(-pi,pi]

8.math.sqrt 開根號

陣列的高階使用

1.array.length

2.遍歷乙個陣列 for(var key in array)

3.插入push()末尾

4.查詢物件在陣列中所對應的索引 indexof()

5.刪除陣列的某個元素 splice(開始索引,要刪除的個數)

6.陣列的排序

7.隨機打亂乙個數列

8.隨機從一堆資料裡抽取乙個值

表的高階使用

1.遍歷乙個表 for(key in table)

2.表裡共有多少個物件object.keys(obj).length

2.刪除表裡的資料 delete list_data[4]

字串物件的高階使用

1.str.length

2.str.indexof() 返回首次出現的位置

3.str.replace('要替換的內容','替換的內容')

4.tolowercase,touppercase

js常用工具函式總結

目錄 1 序列化時間 獲取當前序列化後的時間 dateformat 2 獲取當前日期前或指定時間,前一定範圍的時間 getassigntime 3 判斷是否是1366解析度 is1366screen 4 獲取echarts中x軸資料 getxlist 5 函式防抖 debounce 6 函式節流 t...

js 常用工具方法

1 cookie 操作 setcookie about 設定cookie 預設乙個月失效 function setcookie name,value getcookie about 獲取cookie function getcookie name else delcookie about 刪除coo...

js常用工具方法

slice substring substr 都有擷取字串的作用 1.substring substring 方法返回乙個索引和另乙個索引之間的字串 注意 方法返回乙個索引和另乙個索引之間的字串,語法如下 str.substring indexstart,indexend 下面有六點需要注意 sub...