Learn all about Front End Development in Hindi and English.
Search This Blog
constant variable
"कॉन्स्ट" का उपयोग करने से आप वैरिएबल को परिभाषित कर सकते हैं जिसे नए मूल्यों को नहीं सौंपा जा सकता।
आदिम मूल्यों के लिए, जैसे कि स्ट्रिंग और संख्या, आप मान को बदल नहीं सकते हैं, एक बार जब आप इसे "कॉन्स्ट" का उपयोग करके घोषित करते हैं।
अधिकांश HTML तत्वों में एक प्रारंभिक टैग और एक समापन टैग होता है। उद्घाटन टैग इस तरह दिखते हैं: <H1> बंद टैग इस तरह दिखते हैं: </ H1> उद्घाटन और समापन टैग के बीच एकमात्र अंतर एक समापन टैग के उद्घाटन ब्रैकेट के बाद आगे की स्लैश है।
Javascript is a multi-paradigm language. It supports OOP as well as function programming. Prototypal inheritance in JavaScript OOP is a must to know. In functional programming, important concepts to understand are: closures, first class function and lambdas.
JavaScript program is made up with series of statements and each statement ends with a new line or semicolon. Its not compulsory to terminate a statement with semicolon as JavaScript interpreter use a process called Automatic Semicolon Insertion(ASI). This process will attempt to place semicolons at the end of the line for you. But, it is best practice to write statement in a new line and terminate by a semi-colon. # JavaScript # beginner # tutorial
Comments
Post a Comment