fromCodePointの読み方

javascriptで利用されるメソッドの1つである「fromCodePoint」の読み方を掲載してます。
読み⽅
「フロムコードポイント」と読みます。
fromCodePointとは
javascriptで、Unicodeコードポイントから文字列に変換するメソッドとなります。
console.log(
String.fromCodePoint(97) // a
);
console.log(
String.fromCodePoint(97,98) // ab
);
-
前の記事
snowflakeの読み方 2020.11.21
-
次の記事
flattenの読み方 2020.11.22