programming-examples/js/Math/Convert a positive number to negative number.js
2019-11-15 12:59:38 +01:00

6 lines
97 B
JavaScript

function pos_to_neg(num)
{
return -Math.abs(num);
}
console.log(pos_to_neg(15));