Horje
how to write a program that alerts the first 3 letters of the current day in javascript Code Example
how to write a program that alerts the first 3 letters of the current day in javascript
var currentDay = new Date();
currentDay.toString;
var b = currentDay.toString();
var c = b.slice(0,3);
document.write("Today is " + c);




Javascript

Related
Search specific products in the array in javascript Code Example Search specific products in the array in javascript Code Example
semantic UI react focus on input Code Example semantic UI react focus on input Code Example
copy link url javascript Code Example copy link url javascript Code Example
date and month are swapping in angular Code Example date and month are swapping in angular Code Example
get the first value when mapping through the array Code Example get the first value when mapping through the array Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8