programming-examples/js/Math/Convert a positive number to negative number.js

6 lines
97 B
JavaScript
Raw Normal View History

2019-11-15 12:59:38 +01:00
function pos_to_neg(num)
{
return -Math.abs(num);
}
console.log(pos_to_neg(15));