Blogs



Toastr – Simple jQuery Toast Notifications | JS Toastr  Example
Toastr – Simple jQuery Toast Notifications | JS Toastr Example

toastr , non-blocking notifications के लिए एक JavaScript library है , इसे use करने के लिए jQuery required है। इस library का main purpose notificati... Learn more

JavaScript map
JavaScript map

The map() method is an iterative method. It calls a provided callbackFn function once for each element in an array and constructs a new array from ... Learn more

Indexed DB In JavaScript In Hindi | JS Indexed DB In Hindi
Indexed DB In JavaScript In Hindi | JS Indexed DB In Hindi

IndexedDB एक database है जो कि browser में ही built in होता है , यह localStorage या sessionStorage से ज्यादा powerful और reliable है। क्योंकि इसमें... Learn more

local Storage In JavaScript In Hindi | JS local Storage In Hindi
local Storage In JavaScript In Hindi | JS local Storage In Hindi

JavaScript में localStorage एक penfriend object है जिसका use user data को browser में store करने के लिए किया जाता है। localStorage के द्वारा store ... Learn more

session Storage In JavaScript In Hindi | JS session Storage In Hindi
session Storage In JavaScript In Hindi | JS session Storage In Hindi

JavaScript में sessionStorage एक penfriend object है जिसका use data को को temporary store करने के लिए किया जाता है। sessionStorage के द्वारा store ... Learn more

Understanding setInterval In JavaScript | JS setInterval In Hindi
Understanding setInterval In JavaScript | JS setInterval In Hindi

Actually कई बार हमें ऐसी जरूरत पड़ती हैं जहाँ हम किसी block of code / function को किसी particular time के बाद repeatedly execute कराना चाहते हैं , ऐ... Learn more

Understanding setTimeout In JavaScript | JS setTimeout In Hindi
Understanding setTimeout In JavaScript | JS setTimeout In Hindi

Actually कई बार हमें ऐसी जरूरत पड़ती हैं जहाँ हम किसी block of code / function को तुरंत execute न करके कुछ time बाद execute कराना चाहते हैं , ऐसी si... Learn more

Comma operator In JavaScript In Hindi | JS Comma operator In Hindi
Comma operator In JavaScript In Hindi | JS Comma operator In Hindi

JavaScript में comma (,) operator अपने प्रत्येक operand(बाएं से दाएं) को evaluate करता है और last operand को return करता है। comma operator को आप व... Learn more

JavaScript eval() Function In Hindi | JS eval() Function
JavaScript eval() Function In Hindi | JS eval() Function

eval() function , as a String pass किये गए JavaScript code को evaluate करके result return करता है , eval() function में pass की गयी String को as a... Learn more

Syntax Error In JavaScript In Hindi | JS SyntaxError
Syntax Error In JavaScript In Hindi | JS SyntaxError

जब भी js engine किसी invalid code को syntactically interpret करता है तो SyntaxError object एक error को represent करता है। ये error तब throw होती है... Learn more