陣列,字串方法總結 Unicode 數字

2022-09-08 14:51:14 字數 893 閱讀 6221

就是返回字串中下標單個數值  對應的編碼表的10進製表示數值

方法返回0到65535之間的整數,表示給定索引處的utf-16**單元

延伸:在node後端中使用 fs.readfile()其中有指定方式讀取是 utf-8

const sendhtml = (path, response) =>

fs.readfile(path, options, (error, data) =>)

}const index =

}

fromcharcode() 可接受乙個指定的 unicode 值,然後返回乙個字串。

注意:該方法是 string 的靜態方法,字串中的每個字元都由單獨的 unicode 數字編碼指定。使用語法: string.fromcharcode()。

var n = string.fromcharcode(65)//

a

reverse()方法將陣列中元素的位置顛倒,並返回該陣列。陣列的第乙個元素會變成最後乙個,陣列的最後乙個元素變成第乙個。該方法會改變原陣列 

map()方法建立乙個新陣列,其結果是該陣列中的每個元素都呼叫乙個提供的函式後返回的結果。

const array1 = [1, 4, 9, 16];

//pass a function to map

const map1 = array1.map(x => x * 2);

console.log(map1);

//expected output: array [2, 8, 18, 32]

字串 陣列常用方法總結

字串方法 1,charat index 返回當前下標為index位置上的字元 2,charcodeat index 返回在下標為index位置上字串的unicode編碼 3,concat 連線字串,返回連線的結果 4,indexof substr,fromindex 檢索字串,返回存在的位置,不存在...

陣列與字串的方法總結

1.push 方法 在陣列的最後面新增內容,返回值是新增後陣列的長度 2.pop 方法 把陣列的最後乙個刪除,返回值是刪除的那一項 3.unshift 方法 在陣列的最前面新增內容,返回值是新增後陣列的長度 4.shift 方法 刪除陣列中的第一項,返回值是刪除的那一項 5.concat 方法 拼接...

字串方法總結

doctype html en utf 8 viewport content width device width,initial scale 1.0 x ua compatible content ie edge document title head 屬性 str.length 獲取字串長度 方...