即使是长期从事 JavaScript 开发的人,也可能不知道如何在不添加多余的代码情况下解决下面这些问题。 这些对于编写干净和优化的 JavaScript 代码以及准备 JavaScript 面试都很有用。

1. if 多个条件判断

将多个值存储在一个数组中并使用 includes 方法。

//longhand
if (x === "abc" || x === "def" || x === "ghi" || x === "jkl") {
  //logic
}

//shorthand
if (["abc", "def", "ghi", "jkl"].includes(x)) {
  //logic
}

2. if true … else 省略

如果 if-else 条件没有很多逻辑,它可以省略。只需使用三元运算符。

// Longhand
let test: boolean;

if (x > 10) {
  test = true;
} else {
  test = false;
}

// Shorthand
let test = x > 10 ? true : false;
//or we can use directly
let test = x > 10;

console.log(test);

嵌套条件的话,可以这样写

let x = 300;
test2 = x > 100 ? "greater 100" : x < 50 ? "less 50" : "between 50 and 100";
console.log(test2); // "greater than 100"

3. 变量声明

在声明具有共同值或类型的两个变量时可以简写。

//Longhand
let test1;
let test2 = 1;

//Shorthand
let test1,
  test2 = 1;

4. 空/未定义/空判断

用于判断在创建新变量时引用其值的变量是否为空或未定义时,可以优雅的简写。

// Longhand
if (test1 !== null || test1 !== undefined || test1 !== "") {
  let test2 = test1;
}

// Shorthand
let test2 = test1 || "";

5. 空值的判断和默认值的赋值

let test1 = null,
  test2 = test1 || "";
console.log("null check", test2); // output will be ""

6.未定义值的判断和默认值的赋值

let test1 = undefined,
  test2 = test1 || "";
console.log("undefined check", test2); // output will be ""

正常值的判断

let test1 = "test",
  test2 = test1 || "";
console.log(test2); // output: 'test'

空合并运算符

如果左侧为空或未定义,则空合并运算符 ?? 返回右侧的值。默认情况下,它返回左侧的值。

const test = null ?? "default";
console.log(test);
// expected output: "default"
const test1 = 0 ?? 2;
console.log(test1);
// expected output: 0

7.给多个变量赋值

在处理多个变量并为每个变量分配不同的值时这种简写非常有用

//Longhand
let test1, test2, test3;
test1 = 1;
test2 = 2;
test3 = 3;

//Shorthand
let [test1, test2, test3] = [1, 2, 3];

8.赋值运算符的简写

// Longhand
test1 = test1 + 1;
test2 = test2 - 1;
test3 = test3 * 20;

// Shorthand
test1++;
test2--;
test3 *= 20;

9. if 存在判断的简写

// Longhand
if (test1 === true) or if (test1 !== "") or if (test1 !== null)

// Shorthand //it will check empty string,null and undefined too
if (test1)

10. 多条件 AND (&&) 运算符

//Longhand
if (test1) {
  callMethod();
}

//Shorthand
test1 && callMethod();

11. foreach 循环

// Longhand
for (var i = 0; i < testData.length; i++)

// Shorthand
for (let i in testData) or for (let i of testData)

每个变量的数组

function testData(element, index, array) {
  console.log("test[" + index + "] = " + element);
}

[11, 24, 32].forEach(testData);
// logs: test[0] = 11, test[1] = 24, test[2] = 32

12.比较 return

// Longhand
let test;

function checkReturn() {
  if (!(test === undefined)) {
    return test;
  } else {
    return callMe("test");
  }
}
var data = checkReturn();
console.log(data); //output test

function callMe(val) {
  console.log(val);
}

// Shorthand
function checkReturn() {
  return test || callMe("test");
}

13. 箭头函数

//Longhand
function add(a, b) {
  return a + b;
}

//Shorthand
const add = (a, b) => a + b;
function callMe(name) {
  console.log("Hello", name);
}
callMe = (name) => console.log("Hello", name);

14.短函数调用

// Longhand
function test1() {
  console.log("test1");
}
function test2() {
  console.log("test2");
}

var test3 = 1;
if (test3 == 1) {
  test1();
} else {
  test2();
}

// Shorthand
(test3 === 1 ? test1 : test2)();

15. switch 的简写

将条件保存在 key-value 对象中,并根据该条件使用它。

// Longhand
switch (data) {
  case 1:
    test1();
    break;
  case 2:
    test2();
    break;
  case 3:
    test();
    break;
  // And so on...
}

// Shorthand
var data = {
  1: test1,
  2: test2,
  3: test,
};

data[something] && data[something]();

16. 隐式返回

使用箭头函数直接返回一个值,而无需 return 语句。

//longhand
function calculate(diameter) {
   return Math.PI * diameter
}

//shorthand
calculate = diameter => (
   Math.PI * diameter;
)

17.使用指数

// Longhand
for (var i = 0; i < 10000; i++) { ... }

// Shorthand
for (var i = 0; i < 1e4; i++) {

18.参数默认值

//Longhand
function add(test1, test2) {
  if (test1 === undefined) test1 = 1;
  if (test2 === undefined) test2 = 2;
  return test1 + test2;
}

//shorthand
add = (test1 = 1, test2 = 2) => test1 + test2;

add(); //output: 3

19. 点差运算符

//longhand
// joining arrays using concat
const data = [1, 2, 3];
const test = [4, 5, 6].concat(data);

//shorthand
// joining arrays
const data = [1, 2, 3];
const test = [4, 5, 6, ...data];
console.log(test); // [ 4, 5, 6, 1, 2, 3]
//longhand
// cloning arrays
const test1 = [1, 2, 3];
const test2 = test1.slice();

//shorthand
// cloning arrays
const test1 = [1, 2, 3];
const test2 = [...test1];

20. 模板

如果您不想用 + 将多个变量连接成一个字符串,可以这样写

//longhand
const welcome = "Hi " + test1 + " " + test2 + ".";

//shorthand
const welcome = `Hi ${test1} ${test2}`;

21. 多行字符串

如果您的代码处理多行字符串,则可以使用此方法。

//longhand
const data =
  "abc abc abc abc abc abc\n\t" + "test test,test test test test\n\t";

//shorthand
const data = `abc abc abc abc abc abc
   test test,test test test test`;

22.对象属性赋值

let test1 = "a";
let test2 = "b";

//Longhand
let obj = { test1: test1, test2: test2 };

//Shorthand
let obj = { test1, test2 };

23. 将字符串转换为数字

//Longhand
let test1 = parseInt("123");
let test2 = parseFloat("12.3");

//Shorthand
let test1 = +"123";
let test2 = +"12.3";

24.拆分赋值

//longhand
const test1 = this.data.test1;
const test2 = this.data.test2;
const test2 = this.data.test3;

//shorthand
const { test1, test2, test3 } = this.data;

25. Array.find

const data = [
  {
    type: "test1",
    name: "abc",
  },
  {
    type: "test2",
    name: "cde",
  },
  {
    type: "test1",
    name: "fgh",
  },
];

function findtest1(name) {
  for (let i = 0; i < data.length; ++i) {
    if (data[i].type === "test1" && data[i].name === "fgh") {
      return data[i];
    }
  }
}

//Shorthand
filteredData = data.find(
  (data) => data.type === "test1" && data.name === "fgh"
);
console.log(filteredData); // { type: 'test1', name: 'fgh' }

26. 搜索条件

// Longhand
if (type === "test1") {
  test1();
} else if (type === "test2") {
  test2();
} else if (type === "test3") {
  test3();
} else if (type === "test4") {
  test4();
} else {
  throw new Error("Invalid value " + type);
}

// Shorthand
var types = {
  test1: test1,
  test2: test2,
  test3: test3,
  test4: test4,
};
var func = types[type];
!func && throw new Error("Invalid value " + type);
func();

27. 按位运算符的 IndexOf

如果要遍历数组以查找特定值,可以使用 indexOf() 方法。

//longhand
if(arr.indexOf(item) > -1) { // item found }
if(arr.indexOf(item) === -1) { // item not found }

//shorthand
if(~arr.indexOf(item)) { // item found }
if(!~arr.indexOf(item)) { // item not found }

按位运算符 ~ 为 非-1 的时候返回 true。否定可以用!~。

也可以使用 include()函数。

if (arr.includes(item)) {
  // true if the item found
}

28. Object.entries()

将对象转换为对象数组。

const data = { test1: "abc", test2: "cde", test3: "efg" };
const arr = Object.entries(data);
console.log(arr);

/** Output:
[ [ 'test1', 'abc' ],
  [ 'test2', 'cde' ],
  [ 'test3', 'efg' ]
]
**/

29. Object.values()

这是 ES8 中引入的一个新特性,类似于 Object.entries() ,但是没有 key。

const data = { test1: "abc", test2: "cde" };
const arr = Object.values(data);
console.log(arr);

/** Output:
[ 'abc', 'cde']
**/

30. 双按位运算

否定的双按位运算方法仅对 32 位整数有效。

// Longhand
Math.floor(1.9) === 1; // true

// Shorthand
~~1.9 === 1; // true

31. 重复字符串

//longhand
let test = "";
for (let i = 0; i < 5; i++) {
  test += "test ";
}
console.log(str); // test test test test test

//shorthand
"test ".repeat(5);

32.获取数组的最大值和最小值

const arr = [1, 2, 3];
Math.max(...arr); // 3
Math.min(...arr); // 1

33.从字符串中获取一个字符

let str = "abc";

//Longhand
str.charAt(2); // c

//Shorthand
str[2]; // c

34. 指数

//longhand
Math.pow(2, 3); // 8

//shorthand
2 ** 3; // 8
标签: 技巧
⇠ Fuchsia OS 正式公开可用,从第一代Nest Hub开始 如何将 NodeJS 应用程序注册为 Windows 服务 ⇢

GFW VPN

提供vpn服务,针对中国互联网用户,完全可以突破GFW的封锁. 经过了长期测试,运行非常的稳定.

Send Mail

注册账号