🧠 *“Every expert was once a novice.”* I am not afraid to learn and try new things. Welcome to my journey to full-stack development!
## 👤 About Me
Hello everyone, my name is Eugene Voronko. I am a system administrator from the private IT school “ITLANDIA”. I want to change the direction towards development. I am fond of sports, poetry, programming, technology and many others. My dreams are to become either a Full Stack Dev or a DevOps engineer.
Technically-minded System Administrator transitioning into software development with the goal of becoming a Full Stack or DevOps Engineer. I combine a solid understanding of IT infrastructure with growing proficiency in programming languages like JavaScript, TypeScript, and Python. I am seeking an opportunity to apply my diverse skill set to build and maintain high-quality software.
Platform | Link / Info |
---|---|
eugene.voronko.13@gmail.com |
|
linkedin.com/in/eugene-voronko | |
💻 GitHub | eugenevoronko1 |
🤖 Discord | eugenevoronko_25550 |
📞 Phone | +375 (33) 123-45-67 |
Language | Speaking | Reading & Comprehension |
---|---|---|
English | A2 (Elementary) | B1 (Intermediate) |
Polish | A1 (Beginner) | A1 (Beginner) |
Russian | Native | Native |
Belarusian | Native | Native |
This function checks if a name starts with the letter ‘R’ or ‘r’ (case-insensitively).
If so, it returns the string “[name] plays banjo”.
If not, it returns “[name] does not play banjo”.
The last line, return name;, is unreachable code that never executes.
```javascript function areYouPlayingBanjo(name) { if (name.toLowerCase().startsWith(‘r’)) { return name + “ plays banjo”; } else { return name + “ does not play banjo”; }
return name; }