Javascript

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 »

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 »

How to work javascript with browser explanation in hindi

How to work javascript with browser explaination

Javascript एक client-side programming language है जिसे browser के द्व्रारा execute किया जाता है!. जिससे
web developers को dynamic और interactive web page create करने की अनुमति मिलती है!.
जब webpage load होता है तो browser का javascript engine page में javascript code को execute करना शुरु कर
देता है!. उसके बाद वह javascript code browser के साथ interact करके कई तरह की interactiviy add करना,
webpage के content, element, css style modify करने में और server तक request send करना additional data retrive
करने के लिए इस्तेमाल होता है!.

Read More

How to work javascript with browser explanation in hindi

Read More »

Javascript querySelector() and querySelectorAll() method in hindi

Javascript querySelector() and querySelectorAll() method in hindi

Javascript querySelector() का इस्तेमाल document में first element को select करने के लिए किया जाता है जो specified selector के साथ match होता हो | Javascript querySelectorAll() का इस्तेमाल document में सभी elements को select करने के लिए किया जाता है जो specified selector से match होते है!

Read More

Javascript querySelector() and querySelectorAll() method in hindi

Read More »

Document getElementsByTagName in hindi

getElementsByTagName in hindi

Document.getElementsByTagName() में argument के तोर पर दिए गए tag neme को यह method पुरे document में find करता है और document में match होने वाले सभी elements का एक collection हमें return करता है!.

Read More

Document getElementsByTagName in hindi

Read More »