Remove Duplicate Elements from Array Javascript Example in Hindi

Remove Duplicate elements from Array javascript interview में पूछी जानी वाले सवालों में से एक है | इस article में इसे उदाहरण से समझेंगे | इसे 3 तरीके से solve करना सीखेंगे | Remove duplicate using Array Map Method इस तरीके में array map() method के जरिए एक array के element को दुसरे array में … Read more

Multi Column Layout in CSS3 Tutorial in Hindi

CSS Multi Column Layout CSS3 में Multi Column Layout एक नयी feature है जो एक layout को multiple columns बांटती है | इसमें कई सारे properties हैं जिसके जरिए एक layout को columns में बांटती है, columns के बिच में gap डालती है | column-count इस property के जरिए layout को कितने columns में बांटना … Read more

Web Workers in Javascript Hindi (How Multithreading works in JS?

Web Workers in Javascript HTML5 में web worker एक feature है | इसके जरिए javascript को multithreaded program बना सकतें हैं | Multi-Threading क्या है? एक साथ एक से अधिक tasks जब एक program run करता है, उसे multi-threading कहतें हैं | उदाहरण के लिए सोचिये जैसे एक task run कर रहा है user interface … Read more

Captcha Generator using HTML, CSS and javascript in Hindi

Captcha क्या होता है? ज्यादातर login site में आपने देखा होगा login details डालने के साथ एक ramdom characters की entry भी करनी पड़ती है | उस random characters और numbers की sequence को captcha कहतें हैं | Captch की जरुरत इसीलिए होती ताकि website जान सके की login करने वाला human being है या … Read more

What Event Handling in Javascript in Hindi

Event Handler in Javascript in Hindi

Event क्या होता है? webpage में जब भी कोई क्रिया यानि activity होती है उसे event कहा जाता है | event key-strokes या फिर mouse movement के जरिए हो सकता है | कुछ events page-load, window से भी जुड़े होतें हैं | उदाहरण: mouseClick, keyup, keydown, load, change, focus, submit यहाँ पढ़ें javascript events क्या … Read more

What is Set Data Structure in Javascript ES6 in Hindi

Javascript Set Data Structure in Hindi

Set in Javascript ES6 javascript के ES6 version set नाम का एक नया data structure introduce किया गया | set array की तरह एक collection है जिसमें एक से अधिक values store कर सकतें हैं | Set data structure हमेसा unique values store करता है | ये कभी भी duplicate values को allow नहीं करता … Read more

What is Anonymous Function in Javascript in Hindi Tutorial

Javascript Anonymous Function in Hindi

function जब बिना किसी नाम से बनता है उसे anonymous function केहतें हैं | Anonymous function हम normal function की तरह नहीं call कर सकतें हैं | Anonymous function को 3 तरीके से call किया जा सकता है: 1) self-invoked के जरिए anonymous function call output 2) variable assign के जरिए anonymous function call उदाहरण … Read more

What is Class Inheritance in Javascript ES6 in Hindi

Inheritance in Javascript in Hindi एक अच्छे program का rule है Do not repeat yourself(जितनी जरुरत है उतना ही code लिखें) | इस concept को पाने के लिए OOP में inheritance एक मुख्य भूमिका निभाता है | अगर एक class में properties, functionalities define है और उसी functionalities को दुसरे class में जरुरत है तो … Read more

Javascript (ES6) OOP Concepts in Hindi Tutorial

OOP Concepts in Javascript in Hindi

OOPS Concepts in Javascript javascript के ECMAScript6 version में OOP concepts को introduce किया गया है | OOP क्या है? ये कोई technology नहीं है, बल्कि ये program लिखने का एक तरीका है | OOP को एक coding methodology/style/pattern है | OOP के क्या फायदे हैं? कैसे जाने की कोई programming language OOP concepts को … Read more

Javascript setInterval and setTimeout methods in Hindi

setTimeout and setInterval in Javascript javascript में setTimeout और setInterval दो pre-defined methods है | जब हमे किसी code को एक particular time के बाद execute करना होता है, तब इन दोनों methods का उपयोग किया जाता है | setTimeout() जब हम किसी javascript code कुछ time interval के बाद execute करना चाहतें हैं, तब … Read more