Skip to main content

java script




This Javascript tutorial is for people with little or no experience with programming. It covers these topics:

The Definition of Javascript
The History of Javascript
Java Versus Javascript
Learning Javascript
A Basic JavaScript Example
The Definition of Javascript

JavaScript is a type of programming language that works with HTML to make web pages more interactive. For instance, if you had a trivia quiz on a web page you could use JavaScript to check the answers.
Javascript is limited. It is not a full-featured programming language like Java or C++.
Think of the JavaScript language as a simple, easy-to-use programming language that has only the features necessary to make web pages interactive.
The History of Javascript

When the Web was first created in the early 1990s all web pages were static. In other words there were no popup windows, no shopping carts, no flying thingy's etc. Pages just stayed still.
At that time Netscape Navigator and Internet Explorer were the top browsers. Netscape (now owned by AOL) was the first to create a programming language that would allow web pages to become interactive.
Netscape called it Livescript.
In 1995 Livescript was renamed JavaScript. The new name was partly because Java (the full-featured programming language) was becoming popular and partly because Netscape was working closely with the creators of Java - Sun Microsystems.
In 1997 a standards group, the European Computer Manufacturer's Association (ECMA), approved the JavaScript language as an official standard.
The ECMA then became responsible for the continued development of the language.
JavaScript is now officially called ECMAScript or ECMA-262. Most people still call it JavaScript.
JavaScript Versus Java

Javascript and Java are both programming languages.
Javascript was created with features to add interactivity to the Web.
Java was created with features for almost any application on almost any computer.
It's a sure sign you are a rookie if you call JavaScript 'Java'.
Here's more information on: Java Vs JavaScript.
Learning JavaScript

Find a 'real' project that you want to do. Build a website and learn JavaScript techniques to make it better. You'll learn more if you have a real goal for the JavaScript you are learning. If you would like to see a real-life example see: JavaScript: Open New Window.
How about Javascript rollover buttons on your site? They are attractive and they are useful in pointing out links to your rookie visitors. Do you want people to see several pictures but you don't have room on the page? Create a Javascript slideshow!
Take one step at a time. Javascript knowledge accumulates over time.
Keep all of your scripts in an easily searchable library. You will probably need the same functionality again in the future.
Teach others what you learn. You will learn more and will reinforce the knowledge you do have by teaching others.

Popular posts from this blog

insert document in collection mongodb

 Insert document in collection Two types of insert Insert single records:  Insert multiple records Insert single records:    syntax:  db.collection.insertOne(    <document>,    {       writeConcern: <document>    } ) Example 1:  db.users.insertOne({"name":"ram","email":"ram@gmail.com"})  Example 2:  db.users.insertOne( [{"employee":{"name":"ram","email":"ram@gmail.com"}}] ) Insert multiple records:   syntax : db.Collection_name.insertMany( [<document 1>, <document 2>, …], {     writeConcern: <document>,     ordered: <boolean> }) Example:  db.users.insertMany([{"name":"ram","email":"ram@gmail.com"},{"name":"raju","email":"raju@gmail.com"}])

Collection Shell Commands in MongoDB

Create Collection  Syntax: db.createCollection("Collection Name"); Example: db.createCollection("users"); Delete collection in Mongodb Shell Command db.collection.drop()  Find Collection in Mongodb Shell Command db.collection.find() Show all Collection in Mongodb Shell Command show collections Creat Collection in Mongodb Shell Command db.createCollection("users") Rename the Collection In Mongodb Shell Command db.collection.renameCollection()   Update the single document in MongoDB collections Shell Command db.collection.updateOne()  Updates all the documents in MongoDB collections that match the given query.  db.collection.updateMany() Replaces the first matching document in MongoDB collection db.collection.replaceOne()  Deletes the first document in Mongodb collection db.collection.deleteOne()  db.collection.deleteMany()