mardi 11 octobre 2011

Jang Javascript Cours Javascript L003 Variables

Jang Javascript Cours Javascript Learn Javascript L003 : Variables

Le Javascript est un langage non typé .

Mot clé (keyword): var




<html>

<head >
<title > Cours Javascript L003 : Variables </title >

</head>

<body>


<script language="Javascript">

<!--

var nuyoo = "na nga def" ; // nuyoo (wolof) i.e salutation (français)

var lim = 19 ; // lim (wolof) i.e nombre (français)

document.write (nuyoo) ; // affiche : na nga def


document.write (lim); // affiche: 19


// -->

</script>

</body>

</html>