Editorial

Editorial

AngularJS Directives

AngularJS Directives AngularJS की सबसे important और powerful features में से एक हैं। Directives का उपयोग HTML को extend करने के लिए किया जाता है। इनके जरिए AngularJS browser को यह बताता है कि HTML elements के साथ क्या behavior…

AngularJS Modules

AngularJS Module किसी भी AngularJS application की foundation होता है। Module पूरे application के components को organize और manage करने का काम करता है। Controllers, directives, services, filters और अन्य parts सभी module के अंदर define किए जाते हैं। अगर…

AngularJS Expressions

AngularJS Expressions का उपयोग HTML के अंदर dynamic data को display करने और simple calculations करने के लिए किया जाता है। ये expressions देखने में JavaScript जैसे होते हैं, लेकिन ये AngularJS के context में evaluate होते हैं और ज़्यादा…

AngularJS First App

इस chapter में आप step-by-step अपना पहला proper AngularJS application बनाना सीखेंगे। यहाँ हम simple demo से आगे बढ़कर एक structured AngularJS app बनाएंगे, जिसमें module और controller का उपयोग किया जाएगा। यही तरीका real-world AngularJS applications में follow किया…

AngularJS Get Started

AngularJS के साथ काम शुरू करने के लिए आपको किसी heavy setup या complex installation की जरूरत नहीं होती। आप AngularJS को सीधे browser में run कर सकते हैं। इस chapter में आप सीखेंगे कि AngularJS को project में कैसे…

AngularJS Introduction

AngularJS एक open-source JavaScript framework है जिसे Google द्वारा develop किया गया है। इसका मुख्य उद्देश्य dynamic और interactive web applications को आसानी से बनाना है। AngularJS का उपयोग करके हम HTML को extend कर सकते हैं और उसे एक…

AngularJS Tutorial in Hindi

AngularJS Tutorial in Hindi: AngularJS एक powerful JavaScript framework है जिसका उपयोग modern, dynamic और fast web applications बनाने के लिए किया जाता है। अगर आप HTML, CSS और JavaScript जानते हैं और single-page applications (SPA) बनाना चाहते हैं, तो…

HTML DOCTYPE Declaration

HTML <!DOCTYPE> Declaration एक instruction है जो browser को यह बताती है कि document किस HTML version में लिखा गया है और उसे किस rendering mode में interpret करना है। यह कोई HTML tag नहीं है, बल्कि document की शुरुआत…

HTML Comment Tag

HTML <!–…–> Tag को HTML Comment Tag कहा जाता है।इस tag का उपयोग HTML code में comments लिखने के लिए किया जाता है। Comments का मतलब होता है ऐसा text: HTML comments browser द्वारा completely ignore कर दिए जाते हैं,…

HTML Tags

HTML Tags क्या होते हैं? HTML (HyperText Markup Language) एक markup language है, जिसका उपयोग web pages की structure और content को define करने के लिए किया जाता है। HTML में Tags सबसे basic और सबसे important building blocks होते…

JavaScript Type Operators

JavaScript में Type Operators का उपयोग किसी value या variable के datatype को check करने के लिए किया जाता है। जब हम programming करते हैं, तो यह जानना बहुत जरूरी होता है कि किसी variable में किस type का data…

JavaScript String Operators

JavaScript में String Operators का उपयोग strings के साथ operations करने के लिए किया जाता है। Strings text data होती हैं, जैसे user name, message, title आदि। JavaScript में string operators mainly strings को जोड़ने (concatenate करने) और manipulate करने…