Compare commits

...

4 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
Jason Zhu 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
1 changed files with 5 additions and 6 deletions

11
app.js
View File

@ -1,7 +1,6 @@
function introduction(name, profession) {
console.log('My name is ' + name + ' and I am a ' + profession + '.');
console.log(this);
function display(char1, char2, char3, char4, ...others) {
console.log(others);
console.log(char1, char2, char3, char4);
}
introduction('John', 'student');
introduction.apply(undefined, ['Mary', 'Lawyer']);
introduction.call(undefined, 'James', 'artiest');
let letters = 'abcdefgh';
display(...letters);