Skip to content

Instantly share code, notes, and snippets.

@dejmedus
dejmedus / date.ts
Last active July 14, 2023 22:20
Date helpers JS/TS. Months of year array, days of the week object, ordinal suffix
export const daysOfWeek: { [key: number]: string } = {
0: "Sunday",
1: "Monday",
2: "Tuesday",
3: "Wednesday",
4: "Thursday",
5: "Friday",
6: "Saturday",
};
@dejmedus
dejmedus / emojis.json
Created June 30, 2023 20:37
Array of emojis
[
["🙂", "Slightly smiling face", "U+1F642"],
["😀", "Smiling face", "U+1F600"],
["😃", "Smiling face with big eyes", "U+1F603"],
["😄", "Smiling face with smiling eyes", "U+1F604"],
["😁", "Beaming face with smiling eyes", "U+1F601"],
["😅", "Smiling face with tears", "U+1F605"],
["😆", "Grinning face", "U+1F606"],
["🤣", "Rolling on the floor laughing", "U+1F923"],
["😂", "Lauging with tears", "U+1F602"],