JS Math String DOM

1450 ワード

Math数学関数Math.abs Math.ceil Math.floor Math.round Math.randomは[n-m]ランダム整数、Mathを取得する.max Math.min Math.PI Math.pow Math.sqrt
String charAt
文字列の値を取得charCodeAt
文字列のいずれかの値をとるutf符号化
let a = 'A' ; a.charCodeAt() => 65
String.fromCharCode
あるutf符号化に対応する文字をとる
// String.fromCharCode( 65 ) => 'A'
substr
パラメータ:(文字列の下付き開始、切り取り長)戻り値:切り取った文字または文字列は元の文字列を変更しませんsubstring
パラメータ:(文字列の最初の下付き文字、最後の下付き文字[この下付き文字を含まない値])戻り値:切り取った文字または文字列は元の文字列を変更しませんslice
substringに似ていますtoUpperCase
文字列をすべて大文字に変換toLowerCase
文字列をすべて小文字に変換indexOf
パラメータ:(文字または文字列)戻り値:パラメータが文字列に最初に表示される位置の下付き文字で、ない場合-1lastIndexOf
パラメータ:(文字または文字列)戻り値:パラメータが文字列内で最後に表示された位置の下付きラベル、なし-1
split replace match
//  
let num = '1011'; 
parseInt(num, 2) // => 11

//  
num.toString(2); // => '1011'

DOM取得要素メソッドgetElementById getElementByTagName getElementByName getElementByName getElementByClassName document.documentElement document.body querySelector querySelectorAll Dom
|\| nodeType | nodeName | nodeValue |
|エレメントノード|1|ラベル名大文字|null||テキストノード|3|#text|テキストコンテンツ||アノテーションノード|8|#comment|アノテーションコンテンツ||document|9|#document|null|DOM DOM