I want to know how to use the Date() function in jQuery to get the current date in a yyyy/mm/dd format.
yyyy/mm/dd
This will give you current date string
var today = new Date().toISOString().split('T')[0];