Blogs



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

PHP Security Tips : Hiding php In URL (In Hindi)
PHP Security Tips : Hiding php In URL (In Hindi)

Normally , core PHP में जब हम app बनाते हैं तो उसका URL file name पर depend होता है आग हम कोई routing package use नहीं कर रहे हैं। इस .php extensio... 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

Function object in JavaScript In Hindi | JS Function object
Function object in JavaScript In Hindi | JS Function object

जैसा कि हम जानते हैं कि किसी भी programming language में use होने वाली किसी भी value का एक type होते है , JavaScript में function भी एक value है जि... Learn more