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
Post a Comment