periksa apakah nomor adalah JavaScript negatif

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

Math.sign(positive); // 1
Math.sign(negative); // -1
Math.sign(zero); // 0
Ashamed Alligator