
25/09/2005, 12:57
|
 | | | Fecha de Ingreso: febrero-2005
Mensajes: 994
Antigüedad: 20 años, 1 mes Puntos: 9 | |
En vez de poner el script:
document.write('tal')
document.write('cual')
puedes hacer:
function talcual()
{
variable='tal'
variable+='cual'
document.write(variable)
return variable
}
y la llamas asi, recigiendo al mismo tiempo lo que se ha impreso:
datosimpresos=talcual() |