home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual Thematic 25: Programming
/
pc_actual_25.iso
/
Javascript
/
JavaScriptEditor
/
jse_en28.exe
/
%MAINDIR%
/
Tutorial
/
usevar.js
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
JavaScript
|
2001-09-10
|
262 b
|
13 lines
//Javascript Editor 2 Tutorial
//Use variables
//you DONT say whether it is string or integer.
// and make sure you keep using the same case
var user;
user = prompt("What is your name?","");
document.writeln("Your name is <B>" + user + "</B>");