JavaScript - GavinTheCoder/Hello-World GitHub Wiki

JavaScript

Date Of Birth: 1993

JavaScript is a scripting language that enables you to create dynamically updating content, control multimedia, animate images, and pretty much everything else.

hello world:

Code:

text(“string”,x,y)

HelloWorld:

text(“hello world”,x,y)

HH in the center

text(“hello world”,200,200)

for:

var i;

for (i = 0; i < [array-to-add.length; i++) { 

   text += array-to-add[i] + “";

  }

The “” is just for braking line

  1. my experience Is:

    JavaScript is good for drawing shapes as simple as:

     	ellipse(x,y,height,width)