In javascript, A variable is defined in a function. Then, how can it be used in all the code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

In javascript, A variable is defined in a function. Then, how can it be used in all the code?

1st Dec 2019, 7:00 AM
Swaroop Chandra
Swaroop Chandra - avatar
8 Answers
+ 14
You can not use a variable outside a function which is declared inside a function But if you declare it in global scope then you can use it in function as well as outside function
1st Dec 2019, 7:04 AM
Raj Chhatrala
Raj Chhatrala - avatar
+ 11
Declare that variable globally. Define it before the function Do like this var some; function addText(){ some = "hi" // use like this, don't declare it again } // You can call it anywhere in the code
1st Dec 2019, 7:59 AM
Sai Praneeth
Sai Praneeth - avatar
1st Dec 2019, 7:00 AM
Swaroop Chandra
Swaroop Chandra - avatar
+ 4
we can declare it out of the function or declare it globally.
7th Dec 2019, 7:19 PM
Alireza Gordan
Alireza Gordan - avatar
+ 3
A variable that is created within a function, can not be used or changed outside of the function. As far as the rest of the program is concerned, it doesnt know the variable even exists
2nd Dec 2019, 5:10 AM
Derek
Derek - avatar
+ 2
If you want it to only exsist globaly as a udeclared variable, it should already do so if you are using the var keyword(it will only exsist on the stack). Otherwise, declare it globaly.
2nd Dec 2019, 6:04 PM
B Ricks
B Ricks - avatar
0
Put the variables in a "Public class xxxx". Then call the variable from the class so it could be xxxx.x
1st Dec 2019, 11:45 PM
Bernie Booth Jr
Bernie Booth Jr - avatar
- 1
hello
1st Dec 2019, 11:08 AM
تاونات العالم
تاونات العالم - avatar