JavaScript
function factorial(x) {
if (x == 0) {
return 1;
} else {
return x * factorial(x - 1);
}
}
I am a motivated and detail-oriented Junior JavaScript Developer with a strong foundation in front-end development and a growing interest in back-end technologies. I enjoy turning complex problems into simple, clean, and efficient code. My experience includes working with HTML, CSS, JavaScript (ES6+), and frameworks like React. I am passionate about continuous learning and eager to contribute to a collaborative development team where I can grow as a developer and bring value to real-world projects.
function factorial(x) {
if (x == 0) {
return 1;
} else {
return x * factorial(x - 1);
}
}
fun multiplyNumbers(num: Int): Long {
if (num >= 1)
return num * multiplyNumbers(num - 1)
else
return 1
}
2002-2006
Computer science