Answers for "if negative then 0 js"

2

check if number is negative javascript

const positive = 5;
const negative = -5;
const zero = 0;

Math.sign(positive); // 1
Math.sign(negative); // -1
Math.sign(zero); // 0
Posted by: Guest on October-29-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language