Motivated and curious developer focused on backend and fullstack development.
I have strong problem-solving skills, eagerness to learn modern technologies, and passion for clean code and architecture.
Although I don’t have professional experience yet, I actively build personal projects and study daily.
Task (Codewars): Sum of two lowest positive integers
function sumTwoSmallestNumbers(numbers) {
const [a, b] = numbers.sort((x, y) => x - y);
return a + b;
}