
Roman Kornev
About me
I am 24 years old, graduated from BSUIR. I have a great desire to learn, work and develop.
Education
- Belarusian State Univeristy of Informatics and Radioelectronics
- RSSchool
Experience
Code Example
const func = (num) => {
if (num > 0) {
return num - 1;
}
return num + 1;
};