Meruert Amantay
I'm a beginner frontend developer
About me
Wherever I worked before, I was always drawn to programming. I consider these changes a new stage in my life and set a goal to complete this course.
Experience
Previously, I worked in a bank as a credit manager for small and medium-sized businesses, then as a specialist in a government organization.
University:
al-Farabi Kazakh National University, Almaty
Accounting and auditing
Skills
- HTML/CSS/SCSS
- JavaScript
- Git/GitHub
- Gulp, Bootstrap
- Codewars rank: 5 kyu
- Also completed the Stage0 of RSS 💫
Languages
- Kazakh /native/
- Russian /advanced/
- English /A2/
Example of code
Array Deep Count Codewars kata:
function deepCount(arr){
let count = arr.length;
for (let i = 0; i < arr.length; i++) {
if (Array.isArray(arr[i])) {
count += deepCount(arr[i]);
}
}
return count;
}









