1. 程式人生 > 實用技巧 >每天一點點之ES6學習 - 字串的新增方法

每天一點點之ES6學習 - 字串的新增方法

1.String.fromCodePoint()

ES5 提供String.fromCharCode()方法,用於從 Unicode 碼點返回對應字元,但是這個方法不能識別碼點大於0xFFFF的字元。

String.fromCharCode(0x20BB7)
// "ஷ"

ES6 提供了String.fromCodePoint()方法,可以識別大於0xFFFF的字元,彌補了String.fromCharCode()方法的不足。在作用上,正好與下面的codePointAt()方法相反。

String.fromCodePoint(0x20BB7)
// "