我喜欢优化!
但是,如果站点无法在用户的Internet Explorer 11
浏览器中运行,他们不会在乎我的优化代码。
我使用Endtest来创建自动测试,并在跨浏览器的云上执行它们。
Netflix使用相同的工具来测试他们的web apps
。
你应该查看文档
下面是9个极其强大的JavaScript
技巧。
我们知道string.replace()
函数只能替换第一次出现的情况。你可以在正则表达式的末尾添加/g
来替换所有出现的内容。
var example = "potato potato";
console.log(example.replace(/pot/, "tom"));
// "tomato potato"
console.log(example.replace(/pot/g, "tom"));
// "tomato tomato"
我们可以仅仅通过Set
对象和Spread
运算符就可以创建一个唯一值的数组。
var entries = [1, 2, 2, 3, 4, 5, 6, 6, 7, 7, 8, 4, 2, 1]
var unique_entries = [...new Set(entries)];
console.log(unique_entries);
// [1, 2, 3, 4, 5, 6, 7, 8]
我们只需要使用带空引号集的串联运算符即可。
var converted_number = 5 + "";
console.log(converted_number);
// 5
console.log(typeof converted_number);
// string
我们只需要+
运算符。
请注意这点,因为它仅适用于“字符串数字”。
the_string = "123";
console.log(+the_string);
// 123
the_string = "hello";
console.log(+the_string);
// NaN
每天我都像喝大了~
var my_list = [1, 2, 3, 4, 5, 6, 7, 8, 9];
console.log(my_list.sort(function() {
return Math.random() - 0.5
}));
// [4, 8, 2, 9, 1, 3, 6, 5, 7]
复制代码
很简单,使用Spread
运算符。
var entries = [1, [2, 5], [6, 7], 9];
var flat_entries = [].concat(...entries);
// [1, 2, 5, 6, 7, 9]
准确来说,所谓的多维数组针对二位数组有效!(译者加)
我们以下面为例子:
if (available) {
addToCart();
}
通过简单地使用变量和函数来缩短它:
available && addToCart()
我一直以为我必须先声明一个对象,然后才能分配动态属性。