"use strict";
let x = +prompt('Введите число которое нужно возвести в квадрат:');
let square = function(x) {
return x * x;
};
square(x);
alert(square);
"use strict";
const x = +prompt('Введите число которое нужно возвести в квадрат:');
let square = function(x) {
return x * x;
};
const square = (x) => x * x; // можно сократить фунцию square
const result = square(x);
alert(result);
// or
alert( square(x) );