代码段
const getTagNameNum = () => {
return new Set([...document.querySelectorAll(‘*‘)].map(el => el.tagName)).size
}
知识点
- DOM选择器的种类和用法。
- ES6扩展运算符用法,本次是用于将类数组对象转换成数组对象。
- ES6 Set数据结构,以及Set用于“数组去重”的作用
原文地址:https://www.cnblogs.com/Plortinus/p/8536597.html
时间: 2024-10-08 08:11:22