New JavaScript operator (day10)

catalogue 1. Operator 2. Arithmetic operator 2.1 concept of arithmetic operator 2.3 problem summary 2.4 expressions and return values 3. Increment and decrement operators 3.1 overview of increment and decrement operators 3.2 increment operator 3.3 summary of pre increment and post increment 4. Comparison operator 4.1 comparison opera ...

Posted on Sun, 05 Dec 2021 16:35:05 -0500 by freelancedeve

[ES6 basics] detailed explanation of Array

In addition to Object, Array should be the most commonly used type in ECMAScript. ECMAScript array is the same as other languages. It is a group of ordered data. The difference is that each slot of the array can store any type of data. ECMAScript arrays are dynamically sized and grow automatically as data is added. 1. Create an array // ...

Posted on Sun, 05 Dec 2021 06:35:39 -0500 by Chappers

Iterators and generators

Refer to advanced programming 4 iterator The for loop is the simplest iteration. The loop is the basis of the iteration mechanism. The loop can specify the number of iterations. The iterations are carried out on an ordered set, such as an array. The array has a known length and can be obtained by index, so it can be traversed incrementally ...

Posted on Sat, 04 Dec 2021 14:51:21 -0500 by frymaster

Originally, ES7~12 added these attributes respectively

ES6, also known as ES2015, was released in 2015. Since then, some attributes have been added every year, named ES7~12 respectively. The release years correspond to 2016 to 2021 respectivelyES7includes methodThe include method is added to the array to judge whether an element exists in the array. Before this, indexOf is used to judge the subscri ...

Posted on Sat, 04 Dec 2021 14:42:50 -0500 by bk6662

React, Vue, I want them all! React Hook implements 11 basic functions of Vue

prefaceHello, I'm Lin Sanxin. Because of the needs of the work project, last month, I began to use React to develop the project. Today, it's almost a month. I want to share with you how I realized some functions in Vue in React.As this rookie has not used React for a long time, please pay attention to any defectsNote: the version of Vue referre ...

Posted on Sat, 04 Dec 2021 01:46:45 -0500 by romanali

[JavaScript] day 4 [for double loop] [function]

Double for loop Dual for loop overview Loop nesting refers to defining the syntax structure of a loop statement in a loop statement, such as for In a loop statement, you can nest another one for Loop, like this for Loop statements are called double for Cycle. Double for loop syntax for(Initial of external circulation;Conditions of exter ...

Posted on Thu, 02 Dec 2021 23:37:23 -0500 by php_gromnie

array knowledge point in front-end javascript

Tip: After the article is written, the catalog can be generated automatically, how to generate the help document to the right Article Directory Preface1. What is pandas?2. Steps for use 1. Introducing Libraries2. Read in data Preface Common methods for finding, adding, deleting, modifying arrays in javascript; Tip: The follo ...

Posted on Thu, 02 Dec 2021 12:19:52 -0500 by jrough

Common types of TypeScript

The official documents of TypeScript have been updated, but the Chinese documents I can find are still in older versions. Therefore, some chapters which are newly added and revised are translated.This translation was compiled from TypeScript Handbook. Everyday Types "Chapter.This article is not translated strictly according to the original ...

Posted on Wed, 01 Dec 2021 23:10:35 -0500 by wrathican

Judge data type

Judge data typedata typejs has six data types, including five basic data types and one complex data typeBasic data type (value type): Number,String,Boolean,Null,undefined.Complex data type: Object Reference type: Object,Array,Function,Date,RegExpDifference between value type and reference type1. Different storage locationsThe value type occupie ...

Posted on Wed, 01 Dec 2021 02:06:46 -0500 by spaceknop

JavaScript Advanced Programming Inheritance

1. Abstract Base Class Sometimes it may be necessary to define a class that can be inherited by other classes but not instantiated itself. Although ECMAScript does not There is a syntax that specifically supports this class, but it is also easy to implement through new.target. New.target saved with new keyword keys Class or function used. Inst ...

Posted on Tue, 30 Nov 2021 15:12:37 -0500 by KresentPhresh