Personal photo

Mary Aleksanova

About me

My goal is to develop in the sphere of web development. I prioritize the reinforcement of theoretical knowledge with practice, for the best consolidation of skills.

I havn’t commercial experience in this area, but I have pet projects, which created in the process of self-study.

Skills

  • HTML5
  • CSS3
  • JavaScript (ES5, ES6)
  • Git, GitHub
  • VS Code
  • Adobe Photoshop basic

Languages

  • English - A2
  • Russian - Native

Code Example

                        
function count(string) {  
    let result = {};
    for(let i = 0; i < string.length; i++){
        let a = result[string[i]];
        if(a) {
            result[string[i]] = a + 1;
        } else {
            result[string[i]] = 1;
        } 
    }
    return result;
}