Skip to main content

JavaScript Definition

Introduction of JavaScript

Javascript is a High level, cross platform, Light weight, platform-independent and interpreted client side scripting language. But Secondarily, JavaScript is used on server-side, Node.js allow developers to run JavaScript server-side, and in mobile with React Native and Apache Cordova, and in desktop with Electron. All other uses of JavaScript are insignificant.

It is a simple language built into Netscape 2.0 and greater.

JavaScript is primarily used to make web pages more interactive and user- friendliness of JavaScript not only supports web pages but also supports external applications like: Running widgets, PDF documents, supporting for flash applications etc.

JavaScript’s syntax is heavily inspired by Java and C++. If you have experience in Java and C++, JavaScript’s syntax will seem familiar to you.

It is supported by most web browsers including Chrome, Safari, Firefox, Opera, Internet Explorer, Edge etc.

Note : Web pages are not the only place where JavaScript language is used , many desktop and server programs use JavaScript. Node.js is known for server-side and Some databases, like CouchDB and MongoDB, also use JavaScript as their programming language.

Important point's of JavaScript :

  • JavaScript is an interpreted language not a compiled language, it doesn't need to be compiled. A program such as C, C++ or Java needs to be compiled before it is run.

  • JavaScript is interpreted at runtime by client browser, Browser passes JavaScript code through special program called interpreter.

  • JavaScript is integrated with and embedded in HTML and runs directly from the web page. It is utilized to perform tasks such as create a calendar, printing the time and date, or other tasks that are not possible through plain HTML.

  • JavaScript is used in both client-side and server-side.

  • JavaScript renders web pages in an interactive and dynamic control website content. This allowing the pages to react to events, accept variable text, exhibit special effects, validate data, create cookies, detect a user’s browser, etc.

  • There are many open source application development frameworks, which is based on JavaScript.

Comments

Popular Posts

How to remove the date and .html from every blogger post url

#Remove date and .html from blogger post url A Common search term which every blogger search is How to Remove Date From Blogger Post URL or how do I remove date from blogger permalink? Follow the steps below and then date and .html will be removed from the URL of your blogger post. Step 1 : Login to your Blogger blog and select Theme / Template. Step 2 : Click on Edit HTML and paste the below code just above the </head> tag let's see code :   ➤ Code : mycode.js; Copy code <script type='text/javascript' > //<![CDATA[ // BloggerJS v0.3.1 var urlTotal,nextPageToken,postsDatePrefix=!1,accessOnly=!1,useApiV3=!1,apiKey="",blogId="",postsOrPages=["pages","posts"],jsonIndex=1,secondRequest=!0,feedPriority=0,amp="&"[0];function urlVal(){var e=window.location.pathname,t=e.length;return...

Django static files not working when debug false || debug true

# Django static and media files not working when debug is false In this article you will learn how to fix problem of not loading static files and media in Django even the DEBUG is FALSE. This is the easiest and safest solution. # Problem: Django static and media files not working when debug is false  ➤ Code: settings.py DEBUG = False #True ALLOWED_HOSTS = [ '*' ] #Host name # Problem Fix: Let's see, How you can fix the problem of Django static and media files not working when DEBUB = False : 1.)First way: devserver in insecure mode If you still need to server static locally ( e.g. for testing without debug ) you can run devserver in insecure mode: python manage.py runserver --insecure --insecure: it means you can run serve...

How to remove ? m=1 or ?m=0 from blogger post URL

# Remove m=1 From URL of Blogger post A Common search term that every blogger search is How to ?m=1 or ?m=0 from blogger Post URL. We all know that "simplicity is beauty" and you want to clean permalink. So, in this article, I will guide you on how to remove ?m=1 from the blogger URL, and make a simple professional URL. Follow the few steps below and removed ?m=1 from the URL of your blogger post. Step 1 : First, you login into your blogger's dashboard and then select your blog. Step 2 : Click on the Theme option. Step 3 : Click on the customise Step 4 : Click on Edit HTML option. Step 5 : Press (CTRL + F) from the keyboard and type "/head" and then search. ( If you are not understanding, see the below photo ) Step 6 : Now paste the below code just above the </head> tag. let's see code :   ➤ Code : mycode.js; Copy code ...