During my professional activities as a system administrator, I encounter tasks such as commissioning and configuring organizational computing equipment, setting up various software solutions, and maintaining computer networks. These duties necessitate continuous learning through studying new literature, technical documentation for emerging technologies, and conducting online research to find relevant information.
Given my passion for working with software, I have established a clear objective to become a frontend developer. To pursue this ambition, I dedicate my free time to studying relevant literature and video materials.
Task from CODEWARS: Create a function that takes an integer as an argument and returns “Even” for even numbers or “Odd” for odd numbers.
function evenOrOdd(number) {
if (number % 2 === 0) {
return "Even";
} else {
return "Odd";
}
}
Real estate website project using HTML and CSS
English Language (Beginner Level A1)