Experimental


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

Usage

Add 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;

Usage

Add 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