Skip to content

Instantly share code, notes, and snippets.

@McLarenCollege
Last active October 6, 2021 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save McLarenCollege/2e666c602a2c062e7d78cabb74f118bc to your computer and use it in GitHub Desktop.
Save McLarenCollege/2e666c602a2c062e7d78cabb74f118bc to your computer and use it in GitHub Desktop.
Date of Birth

Given the date, month and year of birth. Print the date of birth in the (dd/mm/yyyy) format

let day = 21;
let month = 5;
let year = 1995;
// write the expression here
should print "My date of birth is 21/5/1995"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment