How to create variable declaration in javascript?
Answers
Answered by
1
int x;
where int is the integer data type and x is the variable.
syntax: data type variable name;
where int is the integer data type and x is the variable.
syntax: data type variable name;
Similar questions