Js basics code ideas | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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 ?

21st Aug 2021, 11:30 PM
Ines
Ines - avatar
2 Answers
+ 1
You should check SoloLearn web projects
22nd Aug 2021, 3:51 AM
Coder-Rohit[{(∞)}]
Coder-Rohit[{(∞)}] - avatar
+ 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.
11th Jan 2023, 2:28 PM
RandomTuber
RandomTuber - avatar