my photo

Stanislau
Krasouski

about me

I am a hard working and always willing to learn new skills. I can work in a team because I quickly find a common language with people to effectively solve work problems. Also it is no problem to work independently in busy environments. My strength is to quickly find information and apply it into practice.

skills

Code example


function isPrime(num){
    for(let i = 2; i < num; i++){
        if(num % i == 0) return false;
    }
    return true;
}

function primeInRange(m,n){
    for(let i = m; i <= n; i++){
        if(isPrime(i) === true) alert(i);
    }
}

Languages

Education

Belarusian State University, Biology faculty (2016 - 2020)

Contacts