CopyPastor

Detecting plagiarism made easy.

Score: 1.8549439479376524; Reported for: String similarity, Exact paragraph match Open both answers

Possible Plagiarism

Plagiarized on 2019-04-23
by jitu thakur

Original Post

Original - Posted on 2011-02-08
by Samuel Meddows



            
Present in both answers; Present only in the new answer; Present only in the old answer;

Use new Date() to generate a new Date object containing the current date and time.
var today = new Date(); var dd = String(today.getDate()).padStart(2, '0'); var mm = String(today.getMonth() + 1).padStart(2, '0'); //January is 0! var yyyy = today.getFullYear();
today = mm + '/' + dd + '/' + yyyy; document.write(today);
This will give you today's date in the format of mm/dd/yyyy.
Simply change today = mm +'/'+ dd +'/'+ yyyy; to whatever format you wish.
Use `new Date()` to generate a new `Date` object containing the current date and time.
<!-- begin snippet: js hide: false -->
<!-- language: lang-js -->
var today = new Date(); var dd = String(today.getDate()).padStart(2, '0'); var mm = String(today.getMonth() + 1).padStart(2, '0'); //January is 0! var yyyy = today.getFullYear(); today = mm + '/' + dd + '/' + yyyy; document.write(today);
<!-- end snippet -->
This will give you today's date in the format of mm/dd/yyyy.
Simply change `today = mm +'/'+ dd +'/'+ yyyy;` to whatever format you wish.

        
Present in both answers; Present only in the new answer; Present only in the old answer;