I’m 21 years old and this year I completed my bachelor’s degree. During my four years of studying, I explored various aspects of IT and ultimately decided on frontend development because I found it the most enjoyable. I am on my way to becoming a top-notch frontend developer!
function makeNegative(num) {
if (num <= 0)
{
return num;
}
else {
return -num;
}
}