आज हम javascript full course in hindi मे हम javascript statements in hindi के बारे में जानकारी देते क्या होती है तो चलिए शुरु करते हैं-
javascript statements in hindi:-
javascript program में लिखे गये Statements का implementation sequentially एक के बाद एक होता है । Statements जिस क्रम में interpreter को प्राप्त होते हैं उसी क्रम में वे execute हो जाते हैं । प्रोग्राम का यह execution sequential execution कहलाता है । जावास्क्रिप्ट भाषा में लिखे प्रोग्राम का भाग ऊपर से नीचे execute होता है।
प्रोग्राम के कुछ segments को चुनकर और repetition करके execute करने की भी आवश्यकता होती है। चुनाव के साथ execute के लिये प्रोग्राम के भागों को विभिन्न भागों में रखा जाता है और किसी शर्त के ture और false होने की स्थितियों में branches निर्धारित की जाती है ।
Compound statement:-
अनेक Statements का वह समूह जिसके प्रत्येक Statement के अन्त में सेमीकॉलन ( ; ) लगा हो , compound statement कहलाता है । { और } के मध्य लिखा Statements block of statements भी कहलाता है । यह statements का ब्लॉक एक unit के रूप में करता है ।
Branching Execution :-
हम जानते हैं कि सामान्य अवस्था में प्रोग्राम का sequential होता है । जब प्रोग्राम के serial execution की direction चुने हुए Statements के ब्लॉक की ओर कर दी जाये तो इसे branched execution कहते हैं ।
JavaScript भाषा में branched execution के लिये use statements को Conditional statements कहते हैं ।
Types of Conditional statements in hindi:-
( A ) if स्टेटमेन्ट ( if statement )
( B ) if else स्टेटमेन्ट ( if else statement )
( A ) if statements:-
if statement में दी गई Condition के true होने पर इसके statements के ब्लॉक को execute करता है अन्यथा प्रोग्राम का serial execution होता रहता है ।
format:-
if ( expression for condition )
{
block of statements
if : एक की - वर्ड है
expression for condition : कोई relation expression है ।
block of statements : compound statement है या सामान्य statements का एक समूह है ।
( B ) if-else statement :-
if else Statement में दी गई Condition के ture होने पर if के नीचे लिखे statements के ब्लॉक को execute करता है अन्यथा else के नीचे लिखे Statement के ब्लॉक execute करता है । बाद में प्रोग्राम के शेष Statement sequentially हो जाते हैं।
Nested if Statement:-
if और else के Statement के block में एक और if Statement का प्रयोग किया जाये तो यह nested if statement कहलाता है ।
टिप्पणियाँ
एक टिप्पणी भेजें