Tutorial Gateway

  • C
  • C#
  • Java
  • Python
  • SQL
  • MySQL
  • Js
  • BI Tools
    • Informatica
    • Talend
    • Tableau
    • Power BI
    • SSIS
    • SSRS
    • SSAS
    • MDX
    • R Tutorial
    • Alteryx
    • QlikView
  • More
    • C Programs
    • C++ Programs
    • Python Programs
    • Java Programs

JavaScript getYear Function

by suresh

JavaScript getYear function is one of the Date Function, which returns the current year of a given date minus 1900. The syntax of the JavaScript getYear function is:

 Date.getYear()

JavaScript getYear Function Example

We use the getYear function to return the year (year – 1900) in a current date and time.

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript Get Year Function </title>
</head>
<body>
    <h1> JavaScript getYear Function Example </h1>
<script>
  var dt = Date();  
  document.write("Date and Time : " + dt);
  document.write("Get Year using getYear() : " + dt.getYear());
</script>
</body>
</html>
JavaScript getYear Function 1

This JavaScript get year function example returns the year from the user specified custom date minus 1900

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript Get Year Function </title>
</head>
<body>
    <h1> JavaScript getYear Function Example </h1>
<script>
  var dt = Date("April 1, 2012 10:12:22.0716");
  document.write("Date and Time : " + dt);
  document.write("Get Year using getYear() : " + dt.getYear());
</script>
</body>
</html>
JavaScript getYear Function 2

JavaScript get Year Example 2

In this getYear function example, we extract the year from the date without year. Or, we can say, get year from time.

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript Get Year Function </title>
</head>
<body>
    <h1> JavaScript getYear Function Example </h1>
<script>
  var dt = Date("10:12:22.0716");
  document.write("Date and Time : " + dt);
  document.write("Get Year using getYear() : " + dt.getYear());
</script>
</body>
</html>
JavaScript getYear Function 3

Placed Under: JavaScript

  • SQL DML, DDL, DCL & TCL Cmds
  • SQL NOT EXISTS Operator
  • SQL UPDATE from SELECT
  • SQL AFTER UPDATE Triggers
  • SQL Get Column Names in Table
  • SQL IF ELSE
  • SQL ACID Properties
  • SQL FOR XML PATH
  • Java Two Dimensional Array
  • Java Perfect Number Program
  • Java Count Digits in a Number
  • C Compare Two Strings Program
  • C Print Prime Numbers 1 to 100
  • C program to Reverse a String
  • C Palindrome Number Program
  • C Program for Palindrome String
  • C Remove Duplicate String Chars
  • C Square of a Number Program
  • C Sum and Average of N Number
  • Python Fibonacci Series program
  • Python Area Of Circle Program
  • Python Prime Numbers 1 to 100
  • Python Program for Leap Year
  • Tableau Rank Calculation
  • Tableau Google Maps usage
  • Power BI Format Dates
  • Power BI Top 10 Filters
  • Power BI – Create Hierarchy
  • Power BI DAX Math Functions
  • Learn SSIS in 28 Days
  • SSIS Transformations
  • SSIS Incremental Load
  • SSRS Drill Through Reports
  • SSRS Drill Down Reports
  • R Programming Tutorial
  • C Tutorial
  • C# Tutorial
  • Java Tutorial
  • JavaScript Tutorial
  • Python Tutorial
  • MySQL Tutorial
  • SQL Server Tutorial
  • R Tutorial
  • Power BI Tutorial
  • Tableau Tutorial
  • SSIS Tutorial
  • SSRS Tutorial
  • Informatica Tutorial
  • Talend Tutorial
  • C Programs
  • C++ Programs
  • Java Programs
  • Python Programs
  • MDX Tutorial
  • SSAS Tutorial
  • QlikView Tutorial

Copyright © 2021 | Tutorial Gateway· All Rights Reserved by Suresh

Home | About Us | Contact Us | Privacy Policy