Skip to content

Instantly share code, notes, and snippets.

View jesspoemape's full-sized avatar
🦄

Jessica Poémape (she/her) jesspoemape

🦄
View GitHub Profile
@jesspoemape
jesspoemape / david-shariff-js-quiz-explanation.md
Last active March 4, 2024 11:07
An explanation of David Shariff's Javascript quiz
@jesspoemape
jesspoemape / server.js
Created June 29, 2017 01:01
Basic Node.js server
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.json());
app.listen(3000, () => {
console.log("Listening on port 3000"});