About me
I'm an aspiring Frontend Developer currently learning JavaScript. I am passionate about building user-friendly interfaces and bringing ideas to life in the browser. I enjoy solving problems and am building a foundation in HTML, CSS, and JavaScript to create engaging web experiences.
Contact info
-
+ 375 33 642 33 60
-
abrankovskaya@gmail.com
-
@abrankovsk
-
LinkedIn
-
GitHub
Languages
- Russian - Native
- English - B1 (in progress)
Anastasia Brankovskaya
Front-end Developer
Education
- University: Belarusian State University of Informatics and Radioelectronics (programmer-economist)
- Courses:
Skills
Hard Skills
- HTML
- CSS
- JavaScript Basics
- Figma
Tools & Editors
- WebStorm
- VS Code
- IntelliJ IDEA
- Adobe Photoshop
- CorelDRAW
- Adobe Illustrator
Soft Skills
- Communication
- Problem solving
- Teamwork
- Time Management
- Adaptability
- Attention to detail
Code Example
Create a function that returns the sum of the two lowest positive numbers given an array of minimum 4 positive integers. No floats or non-positive integers will be passed.
JavaScript
function sumTwoSmallestNumbers(numbers) {
const sort = numbers.sort((a, b) => a - b);
return sort[0] + sort[1];
}
// Example usage:
console.log(sumTwoSmallestNumbers([5, 8, 12, 19, 22])); // 13
console.log(sumTwoSmallestNumbers([15, 28, 4, 2, 43])); // 6