字符串
字符的Unicode表示法
'z'
'\z' === 'z' // true
'\172' === 'z' // true
'\x7A' === 'z' // true
'\u007A' === 'z' // true
'\u{7A}' === 'z' // trueincludes(), startsWith(), endsWith()
repeat()
模板字符串
字符编码
字符查找at()
字符串补全方法padStart() padEnd()
Last updated