Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

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>