What is javascript synchronous / Asynchronous Programming in hindi

What is javascript synchronous Asynchronous Programming

JavaScript Synchronous Programming में tasks sequentially based एक के बाद एक execute होता है, मतलब की
एक task का execution ख़तम होने के बाद ही अगले task को execute किया जाता!

Read More

What is javascript synchronous / Asynchronous Programming in hindi

Read More »

how to access child element in javascript in hindi

how to access child element in javascript in hindi

Introduction Javascript में आप DOM (document object model) के द्वारा provide किये गए methods का इस्तेमाल करके HTML elements को access कर सकते है!. DOM एक web documents structure और HTML के element को एक object के रूप में represents करने वाला एक programming interface है जो आपको उन्हें dynamically रूप से element को manipulate

Read More

how to access child element in javascript in hindi

Read More »

What is javascript hoisting in hindi

javascript hoisting in hindi

Hoisting एक ऐसी विशेषता है जिसके कारण Javascript में लिखे गए variable या function को उनके scope के ऊपर ले जाया जाता है। इसका मतलब होता है कि जब भी आप एक variable या function को declared करते हो, तो उसे अपने scope के शुरुआत में ले जाया जाता है, जिससे variable या function को उस scope में available होने से पहले भी उस scope के अंदर के code में इस्तेमाल किया जा सकता है।

Read More

What is javascript hoisting in hindi

Read More »

What is chatGPT? chatGPT क्या है?

ChatGPT OpenAI के द्वारा develop किया गया artificial intelligence language model है!. यह GPT( Generative Pre-trained Transformer ) architecture पर आधारित है और ChatGPT को बड़े मात्रा में text data पर trained किया गया है, ताकि user जब बी chatGPT में  कुछ question करे तो search related question का answer text के रूप दे सके!.

Read More

What is chatGPT? chatGPT क्या है?

Read More »

Javascript replace() and replaceAll() method in hindi

javascript replace and replaceall method in hindi

Introduction हेलो दोस्तों आज हम इस post में javascript के replace() और replaceAll() method के बारेमे जानेगे!. javascript में इन दोनों method का इस्तेमाल string में substring को किसी new string के साथ replace करने के लिए किया जाता है!. replace() method replace() method दिए गए string में specified substring के साथ replace करती है!.

Read More

Javascript replace() and replaceAll() method in hindi

Read More »

ES6 let and const variable declarations keywords in hindi

ES6 let and const keyword in hindi

let keyword का इस्तेमाल block-scoped variable को declared करने के लिए किया जाता है! const keyword का इस्तेमाल उन variable को declared करने के लिए किया जाता है जिन्हे reassigned नहीं किया जा सकता है!.

Read More

ES6 let and const variable declarations keywords in hindi

Read More »

What is ES6 in hindi ? ES6 features introduction

What is ES6 in hindi ? ES6 features introduction

ES6 को ECMAScript 2015 या ECMAScript 6 से भी जाना जाता है!. ECMAScript एक standard है जिसका इस्तेमाल javascript programing language करती है!. ECMAScript javascript programinglanguage को कैसे काम करना चाहिए इसके बारे में specification provide करता है!.

Read More

What is ES6 in hindi ? ES6 features introduction

Read More »

Javascript primitive method in hindi

Javascript primitive method in hindi

Javascript में String, Number, Boolean, Undefined, Null जैसे primary data type है वह एक basic data structure है जो single value को hold करते है!. और ये value एक बार created होने के बाद में changed नहीं किया जा सकता है!. लेकिन javascript ऐसे कई method provides करता है जो value पर काम कर सकते है और value को change किये बिना value लोटा सकते है!.

Read More

Javascript primitive method in hindi

Read More »