Get latest news and Web Designing tutoria

Wednesday, 3 June 2015

Javascript Dates and Time

The first thing you need to do is to create a new Date object:
var the_date = new Date();
Note the use of the keyword new. After a space you type the word Date (capital "D"). This is followed by a pair of round brackets. This is enough to create a new date object, which we've assign to a variable called the_date. To see what this prints out, add the following
line:
document.write( the_date + "<BR>");
You should find that it prints out quite a lot of information: the day of the week, the month, the day of the month, and then the time. You'll also find that the Date object prints out information to do with GMT (or UTC as it's now known). It will tell you how far ahead or behind the Greenwich Meridian you are.
You can, however, add arguments between the round brackets of Date. The full list of arguments is:
Date( year, month, day [, hour, minute, second, millisecond ] )
Only the first three arguments are required. Try your birthday between the round brackets of Date:
var birthday = (1990, 10, 25);
For the month value, January is 0 and December is 11. Hour values are from 0 to 23

Related Posts:

  • Javascript Comparison Operators They have used the double equal sign (== ). But there are other operators you can use besides the double equal sign. These are known as comparison operators. Here are some more of them. Remember, all these evaluate to … Read More
  • Javascript Switch Statements Sometimes, you'll have more than one value to check for your variables. You can do the checking with a lot of if ... else statements. Or you can use something called a switch statement. Here's an example… Read More
  • Javascript IF ... ELSE This lesson continue from the  previous one You can also add an else part to your IF statements. This is for when you want to say what should happen if your IF Statement evaluates to false. As an example, change your … Read More
  • Javascript Programming Loops One programming tool common to all languages is the loop. Normally, a programme is executed from top to bottom, with each line of code getting processed in turn. If you want to go back up and not down, you can use a loop. L… Read More
  • Javascript Logical Operators Operators you will want to use with your IF Statements are the logical ones. The logical operators give you more options for your IF statements. There are only three to get the hang of: && Two ampersands mean … Read More

0 comments:

Post a Comment