en.javascript.info/1-js/03-code-quality/01-debugging-chrome/debugging.view/hello.js
Ilya Kantor 97a0f22ff0 up
2017-01-03 01:36:58 +03:00

9 lines
129 B
JavaScript

function hello(name) {
let phrase = `Hello, ${name}!`;
say(phrase);
}
function say(phrase) {
alert(`** ${phrase} **`);
}