1、打开MyEclipse10主界面,在菜单项中找到【Window】点击,下拉菜单的【Preferences】 2、打开【Preferences】对话框后,依次选择【General】-->【Appearance】-->【Colors and Fonts】,最后点击【Colors and Fonts】 3、在右边…
Set
console.log(new Set());add
add向其中添加元素 放回的是set结构本身
var set new Set();
set.add(5);
set.add(7);
console.log(set);var set new Set([5, 7]);
console.log(set);参数必须是具备iterator接口的数据结构 数组 类数组 我们发现这里NaN是等于NaN的
var…