Posts

DOM

Image
Document object model(DOM) :- DOM( document object model) को आपके पुरे document को एक single objec t के द्वारा ही represent करता है ये object document होता है इस object की मदद से आप पुरे document में कोई भी HTML element को access कर सकते है DOM आपको किसी webpage के सभी HTML element(tags) को control provide करता है DOM की मदद से आप कोई भी element को remove कर सकते है या नए elements को add कर सकते है DOM एक ऐसी technology है जिसमे  javascript  आपको किसी html document को control करने की power provide करती है इसे देखने है की DOM के द्वारा JavaScript क्या क्या functions के perform कर सकती है functions of DOM (document object model) DOM की मदद से आप सभी html एलेमेंट्स (tags) को access और change कर सकते है DOM की मदद से सभी html attribute को access और change किये जा सकते है DOM की मदद से आप सभी CSS styling को change कर सकते है DOM की मदद से पुराने एलेमेंट्स (tags) और attribute को remove किये जा सकते है DOM की मदद से नए tags और attribute को add किये जा सकते है DOM की मदद से सभी html इवेंट्स क

diffrence

  Functional Programming Object Oriented Programming यह प्रोग्रामिंग emphasizes  उन कार्यों के उपयोग पर जोर देता है जहां प्रत्येक फ़ंक्शन एक विशिष्ट कार्य करता है। This programming paradigm is based on object oriented concept. Classes are used where instance of objects are created Fundamental elements used are variables  and functions. The data in the functions  are immutable(cannot be changed after creation). Fundamental elements used are objects and methods and the data used here are mutable data. Importance is not given to data but to functions. Importance is given to data rather than procedures. It follows declarative programming model. It follows imperative programming model. It uses recursion for iteration . It uses loops for iteration. It is parallel programming supported. It does not support parallel programming. The statements in this programming  paradigm does not need to follow a particular order while execution. The statements in this programming paradigm need to follow an

Asynchronous programming

Image
Single Threaded So basically script is a single thread language which means it runs one line at a time it is not multitasker.so When it receives the code that is going to take time it runs the other code and comes back  to that code when it is done but it cannot do that alone so it takes the help of browser to complete this task browser(made up of c++) contain Synchronous & A synchronous synchronous  programming में एक TIME में एक ही चीज को LINE TO LINE चलाताहै । जब हम किसी function को कॉल करते हैं जो लंबे समय तक चलने वाली क्रिया करता है, तो कार्रवाई समाप्त होने पर यह परिणाम देता है। यह कार्रवाई के समय के लिए प्रोग्राम को रोक देता है। इसके विपरीत, एसिंक्रोनस प्रोग्रामिंग एक ही समय में कई चीजें होने देती है। जब हम कोई क्रिया शुरू करते हैं, तो प्रोग्राम चलता रहता है। जब कार्रवाई समाप्त हो जाती है, तो कार्यक्रम को सूचित किया जाता है और परिणाम प्राप्त होता है। आइए एक उदाहरण का उपयोग करके सिंक्रोनस और एसिंक्रोनस प्रोग्रामिंग की तुलना करें: एक प्रोग्राम जो नेटवर्क से दो संसाधन प्राप्त