Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                
              
            
!

CSS

              
                
              
            
!

JS

              
                /**
 * Generates an ISO 8601 formatted date string (YYYY-MM-DD) from
 * a Date object.
 *
 * The goal is to return the value of Date.prototype.toISOString
 * without the time portion.
 * (e.g., '2023-03-21T04:15:47.000Z' becomes '2023-03-21')
 *
 * This is useful for setting a date input's min/max values
 * and also for setting date values (e.g., for automated tests).
 *
 * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString
 * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Date_and_time_formats#date_strings
 * @see https://yagisanatode.com/2022/01/12/create-a-iso-string-from-date-string-input-intended-for-utc-date-in-javascript/
 * @param {Date} date
 * @returns {string}
 */
const getISOFormattedDate = (date) => {
  // First we need to get the timezone offset in milliseconds.
  // The timezone offset is the difference between the time on
  // the local computer and Universal Coordinated Time (UTC).
  const timezoneOffsetInMinutes = date.getTimezoneOffset();
  const timezoneOffsetInMilliseconds = timezoneOffsetInMinutes * 60 * 1000;

  // Now, let's convert the given date to milliseconds.
  const dateInMilliseconds = Date.parse(date);

  // Calculate the date with the timezone offset and convert to
  // ISO format (e.g., '2023-03-21T04:15:47.000Z').
  const dateWithOffset = dateInMilliseconds - timezoneOffsetInMilliseconds;
  const dateAsISOString = new Date(dateWithOffset).toISOString();

  // Split to return ISO 8601 format (YYYY-MM-DD).
  return dateAsISOString.split("T")[0];
};

console.log(getISOFormattedDate(new Date()));

              
            
!
999px

Console