This is an experimental page where I tinker with web languages such as JavaScript and PHP.
I'm open to any sort of lessons you guys want to give me, as long as I write and practice it, I'll definitely remember, LOL
Writing in a document
UsageAdd document.write("") inside script tags, to print any word; write inside ("")
Example:
document.write("Hello, world!")
Input results in:
Combining variables to form a sentence;
UsageAdd var variablename inside script tags, to print a word or number, first equal a variable to a word or number.
Example: var winword = "Hello, "; var morewinword = "World!"; var combine = winword + morewinword; document.write(combine);
Input results