Todo lo que te llegue de un formulario sera un string.
Cuando ya estas en la variable javascript tienes typeof()
Código HTML:
Ver original<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript"> var variable="esto es un texto";
document.write(variable+" typeof "+ typeof(variable)+"
<br />");
variable="25";//esto tambien
document.write(variable+" typeof "+ typeof(variable)+"
<br />");
variable=25;
document.write(variable+" typeof "+ typeof(variable)+"
<br />");
variable=location.href;
document.write(variable+" typeof "+ typeof(variable)+"
<br />");
variable=Date;
document.write(variable+" typeof "+ typeof(variable)+"
<br />");
Quim