Presentation is prepared by Marat Sovan
https://github.com/sovanmaratfunction multiply(x, y) {
return x * y;
}
function printSquare(x) {
let s = multiply(x, x);
console.log(s);
}
printSquare(3);
console.log('1');
setTimeout(function a() {
console.log('2')},0);
console.log('3');