Compare commits

...

6 Commits

Author SHA1 Message Date
jason.zhu
2a5ef56d42 Module4: Using the Spread Operator 2021-05-13 15:14:05 +10:00
jason.zhu
d822050bdc Module4: Constructing Rest Parameters 2021-05-13 15:03:13 +10:00
368314fcdd Module 4: What are default parameters? 2021-05-12 23:05:26 +10:00
jason.zhu
2ad7483250 Module3: What is bind method? 2021-05-12 17:02:11 +10:00
jason.zhu
6a0a672e35 What is the apply Method? 2021-05-12 13:48:15 +10:00
jason.zhu
0c245858e6 Module3: What is the call Method? 2021-05-12 13:36:32 +10:00

15
app.js
View File

@ -1,11 +1,6 @@
let message = {
name: 'John',
regularFunction: function() {
console.log(this)
console.log('Hello ' + this.name);
},
arrowFunction: () => console.log(this)
function display(char1, char2, char3, char4, ...others) {
console.log(others);
console.log(char1, char2, char3, char4);
}
message.regularFunction();
message.arrowFunction(); //
let letters = 'abcdefgh';
display(...letters);