tel: +380991760000
email: melnikowroman38@gmail.com
telegram: @Roman88mel
Aspiring front-end developer with fpundational skills in JavaScript and a strong desire to deepen my understanding of the languageand it’s frameworks.Passionate about continuous learning and exploring new opportunities in the word of IT.
Code Example
let input = +promp("Enetr number");
function factorial(x) {
if (x <= 1)
return 1;
return x * factorial(x - 1);
}
let f = factorial(input);
console.log(input + "! = " + f)