Coding Master
10.9K subscribers
288 photos
13 videos
220 files
3.1K links
ADMIN : @Coding_Master ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ

Hello guys, I Created This Telegram Channel To Share Useful Content On Web Development & Programming.

๐Ÿ‘‰ Free Ebooks
๐Ÿ‘‰ Free Tools & Resources Links
๐Ÿ‘‰ Free Projects Source Code

So Stay Tuned With Us & Keep Learning ๐Ÿ˜‰
Download Telegram
CSS3 Animated Menu Bar.zip
1.2 KB
Source Code
Top 8 Web Form Makers for Creating Online Forms 2020 ๐Ÿ‘‡๐Ÿ‘‡
Liquid Button Hover Effect.zip
1.2 KB
Source Code
Write a JavaScript program to get the current date.

<script>

var today = new Date();
var dd = today.getDate();

var mm = today.getMonth()+1;
var yyyy = today.getFullYear();

if(dd<10)
{
dd='0'+dd;
}

if(mm<10)
{
mm='0'+mm;
}

today = mm+'-'+dd+'-'+yyyy;
console.log(today);

today = mm+'/'+dd+'/'+yyyy;
console.log(today);

today = dd+'-'+mm+'-'+yyyy;
console.log(today);

today = dd+'/'+mm+'/'+yyyy;
console.log(today);

</script>