girl in grass

Aleksandra Bodnar

Web-developer

Contacts

Skills

  • HTML
    90%
  • CSS
    80%
  • GIT
    70%
  • JS
    50%
  • PHP
    60%
  • MySQL
    70%
  • Flexbox and Grid
    80%
  • Bitrix
    80%

Languages

  • English - B1.
  • Serbian - A2.

About me

I love math and programming. I worked with Bitrix for a long time. Recently, I realized that many things, due to long uselessness, began to be forgotten. I want to update my knowledge, improve my level and do those things that I could not have done before.

Codes

Exercise:

Move the first letter of each word to the end of it, then add "ay" to the end of the word. Leave punctuation marks untouched.

Solution:

                                
        function pigIt(str){
            let res = str.split(' ');
            res = res.map((x) => (!'.!?'.includes(x)) ? x.slice(1)+x.slice(0,1)+'ay': x);
            return res.join(' ');
        }
                                
                            

Projects

Graph exercise

Graph exercise for solution coin drop probabilities.
  • icon html
  • icon html
  • icon html

Beatuful buttons

Beatuful buttons in white space for realitive.
  • icon html
  • icon html
  • icon html

Education

2015-2019. Higher education of the Immanuel Kant Baltic Federal University, majoring in Business Informatics.
2019-2020. Studied JS, CSS, PHP and others on htmlacademy.
2020. Took courses from the W3C on edX, called "Front-End Web Developer (FEWD) Professional Certificate".
2021-2022. Actively studied and worked with PHP and Bitrix, Bitrix24.
2023. More detailed study JS with RSSchool.