My contacts:
- Tel. +375 29 856-30-76
- E-mail: ekaterinasobol90@gmail.com
- GitHub ekaterinasobol
- Discord ekaterinasobol
- LinkedIn: Katsiaryna Rekuts
I have been working as a specialist in marketing for 10 years but now my goal is to get a new profession.
I am willing to gain new knowledge in programming and to improve my personal skills.
I am very hardworking, reliable, diligent and responsible. I am a good team player. I will do my best to become a valuable specialist in the field of front-end development.
function multiply(a, b){
return a * b;
}
function add(a, b){
return a + b;
}
function minus(a, b){
return a - b;
}
function divide(a, b){
if(b!=0) {
return a/b;
}
return 0;
}
console.log("Summ of 10 and 15 is:");
console.log(add(10,15));