Hey There Guys. Welcome to the first post of this series "Quick and Dirty Introduction to JavaScript". You are here because you want to learn JavaScript from Scratch and in a very little time.
Please note that if you know some other programming languages , then you'll find out that JavaScript is a high-level, dynamic, untyped interpreted programming language that is well-suited to object-oriented and functional programming styles. To created a beautiful web page it needs three major ingredients
- HTML (for structure)
- CSS(For Presentation)
- JavaScript(For Behaviour)
JavaScript can make web pages more useful by supplying immediate feedback from your Website Visitor.
A JavaScript-powered shopping cart page can instantly display a total cost, with tax and shipping, the moment a visitor selects a product to buy. JavaScript can produce an error message immediately after someone attempts to submit a web form that’s missing necessary information and it's all take no time at all because JavaScript Execute on Client's Side (Your Browser) not on a Server.
A quick look to the history of JavaScript
JavaScript was Developed at Netscape in the early days of the World Wide Web and JavaScript is nearly as old as the web itself,technically, “JavaScript” is a trademark licensed from Sun Micro systems (now Oracle) used to describe Netscape’s (now Mozilla’s) implementation of the language. Netscape submitted the language for standardization to ECMA—the European Computer Manufacturer’s Association—and because of trademark issues, the standardized version of the language was stuck with the awkward name “ECMAScript.” For the same trademark reasons, Microsoft’s version of the language is formally known as “JScript.” In practice, just about everyone calls the language JavaScript.There is not a single similarity between Java and JavaScript.JavaScript was originally named LiveScript, but the marketing guys at Netscape decided they’d get more publicity if they tried to associate the language with the then-hot Java. Don’t make the mistake of confusing the two…especially at a job interview
Post a Comment