Home > Article > Web Front-end > 10 practical tips in JavaScript (share)
Related recommendations: "javascript video tutorial"
I'm always looking for new ways to improve efficiency.
And JavaScript is always full of unexpected surprises.
The arguments object is an array-like object accessible inside the function, which contains the The value of the function's argument.
But this is different from other arrays, we can access the value and get the length, but we cannot use other array methods on it.
Fortunately, we can convert it into a regular array:
var argArray = Array.prototype.slice.call(arguments);
My initial instinct was to use a loop, but that would be too cumbersome.
var numbers = [3, 5, 7, 2]; var sum = numbers.reduce((x, y) => x + y); console.log(sum); // returns 17
#We have the following code:
if (hungry) { goToFridge(); }
By using variables with functions, we Can make it shorter:
hungry && goToFridge()
||
for the condition. I used to declare mine at the beginning of the function variable to avoid undefined
situations in case of any unexpected errors.
function doSomething(arg1){ arg1 = arg1 || 32; // if it's not already set, arg1 will have 32 as a default value }
The comma operator (,
) can evaluate each of its operands ( from left to right) and returns the value of the last operand.
let x = 1; x = (x++, x); console.log(x); // expected output: 2 x = (2, 3); console.log(x); // expected output: 3
We can use the length attribute to adjust the array size or clear the array
var array = [11, 12, 13, 14, 15]; console.log(array.length); // 5 array.length = 3; console.log(array.length); // 3 console.log(array); // [11,12,13] array.length = 0; console.log(array.length); // 0 console.log(array); // []
The destructuring assignment syntax is a JavaScript expression that can decompress the values in the array or the properties in the object into different variables.
let a = 1, b = 2 [a, b] = [b, a] console.log(a) // -> 2 console.log(b) // -> 1
Every day I randomly arrange
Randomly arrange, randomly arrange
var list = [1, 2, 3, 4, 5, 6, 7, 8, 9]; console.log(list.sort(function() { return Math.random() - 0.5 })); // [4, 8, 2, 9, 1, 3, 6, 5, 7]
You can assign dynamic properties before declaring the object.
const dynamic = 'color'; var item = { brand: 'Ford', [dynamic]: 'Blue' } console.log(item); // { brand: "Ford", color: "Blue" }
For all ES6 lovers, we can use Set with spread operator (spread) Object to create a new array containing only unique values.
const my_array = [1, 2, 2, 3, 3, 4, 5, 5] const unique_array = [...new Set(my_array)]; console.log(unique_array); // [1, 2, 3, 4, 5]
Responsibility is far more important than efficiency.
Your website needs to be available in all browsers.
You can use Endtest or other similar tools to make sure.
And you? Do you have any JavaScript tips or tricks to share?
English original address: https://dev.to/zandershirley/10-practical-javascript-tricks-2b7h
Author: Zander Shirley
For more programming-related knowledge, please visit: Introduction to Programming! !
The above is the detailed content of 10 practical tips in JavaScript (share). For more information, please follow other related articles on the PHP Chinese website!