数组去重、模板字符串、ASCLL编码、严格模式

79 阅读1分钟

数组去重

编程思想:

image.png

模板字符串

  • 使用/``引号
  • 变量用 ${变量}形式

image.png

  • 举例:js实现表格输出

image.png 方法一:使用forEach()和字符串拼接

image.png 方法二:使用map()和join()实现

image.png

  • 举例2:统计字符串中不同字符的出现字数

image.png

image.png

ASCLL编码

说明

image.png

GBK

image.png

unicode

image.png

charCodeAt()方法

image.png

案例

image.png

严格模式

image.png