53063593e3
Final
9 lines
225 B
HTML
9 lines
225 B
HTML
<script>
|
|
string = "The quick brown fox jumps over the lazy dog"
|
|
|
|
with (string)
|
|
{
|
|
document.write("The string is " + length + " characters<br>")
|
|
document.write("In upper case it's: " + toUpperCase())
|
|
}
|
|
</script> |