What is the memoization technique in JavaScript in Hindi

What is the memoization technique in JavaScript in Hindi

Memoization JavaScript में एक optimization technique है जो किसी function के result को cache में store करती है, ताकि future में अगर वही input values दोबारा मिले तोह function को वह calculation करने की ज़रुरत ना पड़े, और result सीधा cache से मिल जाये!. यह technique तब काफी helpful होती है जब function में complex या time-consuming calculations किया गया हों!.

Read More

What is Throttling in JavaScript in hindi

What is Throttling in JavaScript in hindi

Javascript में Throttling technique का use करके हम function को specific time पर call कर सकते हैं for example के लिए हम Throttling में हम delay time set कर सकते है जिसके चलते function उस delay time के बाद ही execute हो, chahe scroll और resizing event कितने ही बार trigger हुवा हो!.

Read More

What is debounce in Javascript in hindi

What is debounce in Javascript in hindi

Javascript में Debouncing एक technique है जो frequent events, जैसे typing या scrolling, resizing, को optimize करने के लिए use होती है!. यह function के execution को delay करती है जब तक user कोई action temporarily stop ना करदे, ये technique performance को improve करने के लिए एसेंशियल होती है!. आप इस post में जानिये debouncing का concept detail से!.

Read More

What is async / await in JavaScript in Hindi

what is async await in JavaScript in hindi

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 किये!.

Read More

What are Web Components in Javascript in hindi?

Web Components in Javascript in hindi

Web components web platform API का एक set है जो आपको reusable और encapsulated HTML tag create करने की अनुमति देता है जिसका इस्तेमाल web application में किया जा सकता है!. वे developers को custom elements को create और define करने और उनके behavior and style को manage करने की अनुमति देता है!.

Read More

What is promises in Javascript in hindi?

what is promises in javascript in hindi

जाने के javascript में Promise asynchronous programming को कैसे simplify बनता है! जाने Promise .then(), .catch(), और .finally() के साथ कैसे work करते है!. ताकि success, failure और clean-up task को structured और readable तरीके से handle किया जा सकते!.

Read More

What is call stack in javascript in hindi?

What is call stack in javascript in hindi

Call stack यह समजने के लिए एक important concepts है की javascript किस तरह से order में function को execution करता है. Function को add और remove करके यह track करता है की क्या execute करना है जिससे उचित execution का order spacify होता है!.

Read More

What is Shopify metaobject in hindi

shopify Metaobjects in hindi

Metaobject आपको अपने store के लिए additional information को add और store करने में मदद करते है!. For example आप किसी product और collection के लिए information store कर सकते है, जैसे की उसके features, specifications और size charts वगेरे!.

Read More

In shopify how to create section in hindi

Shopify में एक section को कैसे create कर सकते है

Shopify section से आप अपने store के content को dynamic और customizable content block बना सकते है!. और हरेक sections का layout अपने इस्तेमाल के आधार पर अलग-अलग और reuseable होते है जिसे आप अपने online store को आसानी से manage कर सकते है बिना किसी coding knoledge के!.

Read More