Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/10/2006, 17:52
Avatar de isaacluz
isaacluz
 
Fecha de Ingreso: marzo-2005
Mensajes: 180
Antigüedad: 20 años
Puntos: 0
Ahh que buena pregunta!!!.. nunca me habia encontrado con este problema, pero buscando un poco en google di con esto... gracias.. ahora ya sé también yo

Código:
<html>
<script>
Numero = -2;
Positivo = -(Numero);
NegativoDeNuevo = -(Positivo);
//
alert(Numero+' | '+Positivo+' | '+NegativoDeNuevo);
</script>
</html>