Compare commits
No commits in common. "2a5ef56d42e2b2119e386f47e08195f1a75acbfb" and "368314fcdd72cbd15706fdcb8563fe9a0fa44dcd" have entirely different histories.
2a5ef56d42
...
368314fcdd
9
app.js
9
app.js
|
@ -1,6 +1,5 @@
|
|||
function display(char1, char2, char3, char4, ...others) {
|
||||
console.log(others);
|
||||
console.log(char1, char2, char3, char4);
|
||||
function sayHi(message, name = 'World') {
|
||||
console.log(message + " " + name);
|
||||
}
|
||||
let letters = 'abcdefgh';
|
||||
display(...letters);
|
||||
sayHi("Hello");
|
||||
sayHi("Hi", 'John');
|
Loading…
Reference in New Issue