Enhanced object literals trong javascript ES6

  Рет қаралды 67,916

F8 Official

F8 Official

Күн бұрын

Пікірлер
@sometimesalways1259
@sometimesalways1259 3 жыл бұрын
đúng cái e cần, tks bro so much !
@hungcao1342
@hungcao1342 2 жыл бұрын
nice!
@ongvi6212
@ongvi6212 2 жыл бұрын
sogoi a ơi :D
@hoaimiqng
@hoaimiqng 3 жыл бұрын
hi !
@amanda2348-g9j
@amanda2348-g9j 2 жыл бұрын
3:15 return this.name chứ ạ
@quyho6219
@quyho6219 Жыл бұрын
class userInfo { constructor(parent){ this.parent = parent; this.left = undefined; this.right = undefined; } inputValue(value){ if (this.parent === undefined){ this.parent = value; } else if (value < this.parent){ if(this.left === undefined){ this.left = new userInfo(value); } else { this.left.inputValue(value); } } else if (value > this.parent){ if(this.right === undefined){ this.right = new userInfo(value); } else { this.right.inputValue(value); } } else { console.log("Error"); } } showTree(){ if (this.left !== undefined){ this.left.showTree(); } console.log(this.parent); if (this.right !== undefined){ this.right.showTree(); } } } let binaryTree = new userInfo(50); binaryTree.inputValue(23); binaryTree.inputValue(6); binaryTree.inputValue(77); binaryTree.inputValue(99); binaryTree.showTree()
Spread trong JavaScript ES6
13:57
F8 Official
Рет қаралды 74 М.
This keyword trong JavaScript | JavaScript nâng cao
25:01
F8 Official
Рет қаралды 44 М.
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
Правильный подход к детям
00:18
Beatrise
Рет қаралды 11 МЛН
Destructuring trong JavaScript ES6
13:20
F8 Official
Рет қаралды 69 М.
Object constructor trong JavaScript
13:39
F8 Official
Рет қаралды 88 М.
Top 6 JavaScript Array Methods mà bạn nên biết (2022)
25:19
IUH - Ôn Tập Cuối Kỳ OOP - Lập Trình Hướng Đối Tượng JAVA
54:35
Quốc Khánh Khùng Khờ Khạo
Рет қаралды 873
Closure trong JavaScript | JavaScript nâng cao
40:51
F8 Official
Рет қаралды 60 М.
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН