0% found this document useful (0 votes)
13 views2 pages

JavaScript Tutorial 8: Dates Methods

The document is a tutorial on JavaScript objects, specifically focusing on the getDay() method for retrieving the current weekday. It includes an HTML example that displays the name of the current day using an array of day names. The tutorial is part of a larger assignment for a student named Parth Pravin Chavan from batch B3, roll number 46.

Uploaded by

rambeta0047
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views2 pages

JavaScript Tutorial 8: Dates Methods

The document is a tutorial on JavaScript objects, specifically focusing on the getDay() method for retrieving the current weekday. It includes an HTML example that displays the name of the current day using an array of day names. The tutorial is part of a larger assignment for a student named Parth Pravin Chavan from batch B3, roll number 46.

Uploaded by

rambeta0047
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Name: Parth Pravin Chavan Batch : B3 Roll NO.

: 46

TUTORIAL NO. 8 : Different methods of following JavaScript objects.

<!DOCTYPE html>
<html>
<body>

<h1>
JavaScript Dates
</h1>
<h2>

The getDay() Method


</h2>
<p>
Return the weekday as a number.
</p>
<p>

You can use an array of names to return the weekday as a name:


</p>
<p id="demo"></p>
<script>
const days = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];
const d = new Date();
let day = days[[Link]()];
[Link]("demo").innerHTML = day;
</script>

</body>
</html>

You might also like