Day 5๐Ÿ’ป


Hi ๐Ÿ‘‹

This Day I’m going to tal about Javascript syntax

JavaScript syntax is the set of rules, how JavaScript programs are constructed:

// How to create variables:

var x;

let y;


// How to use variables:

x = 5;

y = 6;

let z = x + y;

And this is for today

Comments

Popular posts from this blog

Day 2 Talking about computer science ๐Ÿ’ป

Day 12 “C comments”