Skip to content

chentex/learning_js

Repository files navigation

Learning JavaScript

A little project for beginners to learn the basics oa JavaScript language.

How it's organized

  • Lesson 01: Variables basics. here
  • Lesson 02: Objects. here
  • Lesson 03: Arrays. here

How to run examples

First you need to have node installed. If you don't have it I recommend this sources:

Once installed check your node version, make sure you have version 6 or above.

$ node -v
v6.11.5

Now you can run the examples like this:

$ node lesson01.js

b = 10
a = 6
a = 7
s = this is a string 's that has stuff andenters.
s length = 45
s in Upper Case = THIS IS A STRING 'S THAT HAS STUFF ANDENTERS.
d = This is the correct way to use strings, with no breaking line.
true
false

This is still a Work In Progress, I'll keep adding more stuff as the days go by.

Any problems or suggestions create an Issue to discuss them.