- 1
How do you use the code var
I put var c = 0;
3 Respostas
+ 1
¿What programming language are you referring to? ¿JS?
Here is a lesson on it.
https://www.sololearn.com/Course/JavaScript/1128/?ref=app
https://www.sololearn.com/Course/JavaScript/2969/?ref=app
0
Matthew Anderson In python you don’t use the word var instead you just wtite the variable name like this you also dont need a semi colen at the end
num = 10
0
In js we use var keyword but in python you must write variable name and it value.
For example:
In js:
Var c = 0;
In Python:
C=0