HTML Script Tag Attributes Explained in Hindi
HTML script tag के सभी attributes को Hindi में समझें, जाने src, async, defer, type, integrity, crossorigin और उनका use web development में.
HTML Script Tag Attributes Explained in Hindi Read More »
HTML script tag के सभी attributes को Hindi में समझें, जाने src, async, defer, type, integrity, crossorigin और उनका use web development में.
HTML Script Tag Attributes Explained in Hindi Read More »
JavaScript सीखते समय कई ऐसे keywords और operators होते हैं जो कोड को आसान और powerful बनाते हैं। इस post में हम instanceof, for…in, for…of, typeof, in, Object.is, Array.isArray,delete, new, super को example और explanation के साथ सीखेंगे।
JavaScript Keywords और Operators Explained in Hindi Read More »
इस Post में जानिए JavaScript में Import और Export क्या होता है, उनके प्रकार (Named और Default Export), और कैसे Modules का उपयोग करके अपना Code बेहतर तरीके से Manage कर सकते हैं।
JavaScript में Import और Export क्या होता है? In Hindi Read More »
JavaScript में “Observe” technique का इस्तेमाल किसी elements में changes को monitor करना और उस पर react करना है!. यह changes DOM elements, Object या data stream में हो सकते है!. इस technique से website और application को ज्यादा interactive और user friendly बनती है!.
JavaScript me Observe Technique kya hai? Read More »
JavaScript मे Event delegation एक technique है जिसमे हम एक parent element पर event listener लगाते हैं, और जब उसके अंदर कोई child element पर event जैसे की click करता है तो parent element उस event को handle करता है!.
What is Event Delegation In JavaScript in hindi Read More »
Introduction हेलो दोस्तों आज हम इस post में Javascript के Currying technique के बारे में जानेगे की Javascript में उसका इस्तेमाल क्यों और कैसे किया जाता है!. What is currying in JavaScript in Hindi? Currying क्या है? Currying एक functional programming technique है. जिसमे function को इस प्रकार से लिखा जाता है की वह एक
What is Currying in javascript in hindi Read More »
Memoization JavaScript में एक optimization technique है जो किसी function के result को cache में store करती है, ताकि future में अगर वही input values दोबारा मिले तोह function को वह calculation करने की ज़रुरत ना पड़े, और result सीधा cache से मिल जाये!. यह technique तब काफी helpful होती है जब function में complex या time-consuming calculations किया गया हों!.
What is the memoization technique in JavaScript in Hindi Read More »
Javascript में Throttling technique का use करके हम function को specific time पर call कर सकते हैं for example के लिए हम Throttling में हम delay time set कर सकते है जिसके चलते function उस delay time के बाद ही execute हो, chahe scroll और resizing event कितने ही बार trigger हुवा हो!.
What is Throttling in JavaScript in hindi Read More »
Javascript में Debouncing एक technique है जो frequent events, जैसे typing या scrolling, resizing, को optimize करने के लिए use होती है!. यह function के execution को delay करती है जब तक user कोई action temporarily stop ना करदे, ये technique performance को improve करने के लिए एसेंशियल होती है!. आप इस post में जानिये debouncing का concept detail से!.
What is debounce in Javascript in hindi Read More »
async/await JavaScript programming में asynchronous operations को handle करने का एक modern और easy-to-use method है!. इसका इस्तेमाल तब किया जाता है जब आपको time-consuming operations को रन करना हो जैसे की API call, file reading, database queries जो बिना poori application website को block किये!.
What is async / await in JavaScript in Hindi Read More »