Posts by Douglas Medeiros • 21 points
1 post
-
1
votes2
answers635
viewsA: How to check if a number is negative in JS through a function
function verificaNegativo(valor) { if (valor < 0) { alert("O numero é negativo"); } else { alert("O numero é Positivo"); } } You can use a simple function that checks if the number passed is less…
javascriptanswered Douglas Medeiros 21