0
Js basics code ideas
I am literally learning js as my first programming language and i want some really basics code ideas to help ne undrestand it and develope myselfe , can someone help me pleas ?
2 ответов
+ 1
You should check SoloLearn web projects
+ 1
Basic code
var one = 10;
var two = 12;
console.log(one + two);
Output:
22
The output is 22 because variables one and two store values 10 and 12,and console.log function outputs the sum of the both values.