9 lines
129 B
JavaScript
9 lines
129 B
JavaScript
function hello(name) {
|
|
let phrase = `Hello, ${name}!`;
|
|
|
|
say(phrase);
|
|
}
|
|
|
|
function say(phrase) {
|
|
alert(`** ${phrase} **`);
|
|
}
|