Skip to content

Instantly share code, notes, and snippets.

@coryhouse
coryhouse / package.json
Last active April 15, 2023 15:08
package.json for Building a JS Development Environment on Pluralsight
{
"name": "javascript-development-environment",
"version": "1.0.0",
"description": "JavaScript development environment Pluralsight course by Cory House",
"scripts": {
},
"author": "Cory House",
"license": "MIT",
"dependencies": {
"whatwg-fetch": "1.0.0"
@iboB
iboB / gist:1363623
Last active February 20, 2021 08:48
Simple age calculator in JavaScript (I use it in some about-me HTMLs)
function calcAge(year, month, day) {
const now = new Date();
let age = now.getFullYear() - year;
const mdif = now.getMonth() - month + 1; // jan is 0 in getMonth
if (mdif < 0) {
// not birthday yet
--age;
}
else if (mdif === 0) {
// maybe birthday?