Important Notice:

Course Content
Switch Statement
0/1
break and continue Statements
0/3
Basic Form Validation in JavaScript
0/1
JavaScript & Angular JS (Chapter- 6) M2-R5.1
About Lesson

Types of Variables

             जावास्क्रिप्ट में दो प्रकार के वेरिएबल होते हैं लोकल वेरिएबल और ग्लोबल वेरिएबल.

Local Variable:-

                              Local variables वो variables होता है जिनका scope किसी भी function तक limited रहता है तो ऐसे में variables किसी function के अन्दर create किये जाते है और वो उस function में ही काम करते है function के बाहर आप इन variables को प्रयोग नहीं कर सकते है

Global Variable:-

                      global variables वो variables होते है जिनका scope पुरे program में होता है तो ऐसे में variables को program के शुरू में ही create किये जाते है और आप इन्हे पुरे program में कही भी प्रयोग कर सकते है इस तरह के variables का scope पुरे program में होता है

Question:

  1. Wap to declare multiple variable in a single line & Display details using innerHTML.

  2. wap to calculate area of circle, radius=4.6

 

Types of Variables

              There are two types of variables in JavaScript, local variables and global variables.

Local Variable:-

                      Local variables are those variables whose scope is limited to any function, so in such a situation, variables are created inside a function and they work in that function only. You cannot use these variables outside the function.

Global Variable:-

                      Global variables are those variables whose scope is in the entire program, so in such cases, variables are created at the beginning of the program and you can use them anywhere in the entire program. The scope of such variables is in the entire program.

Question:

  1. Wap to declare multiple variable in a single line & Display details using innerHTML.

  2. wap to calculate area of circle, radius=4.6

error: Content is protected !!