let javascript = "Fun!";

let javascript = "Fun!";

Are you just starting javascript? You must have heard about it being hard.. but can we just make it fun too?

Yeah you heard that right

I started Javascript today and here to put down what I've learnt.

VALUES AND VARIABLE

A variable is a box into which we can store a value.

A value is basically a piece of data, it is also the smallest unit of information that we have in Javascript

One.png

let firstCode = "Javascript is Fun!"

console.log (firstCode);

From the above code snippet the variable there is firstCode in which the value Javascript is Fun! is stored.

Can you Understand what Variable and Value is now?.. great!

OUTPUT

Two.png

Underneath it is the console drawer.. you should be able to see the result

  • Javascript is Fun!

And I do hope you have fun learning Javascript and also hope you console.log your fear out by starting.