Skip to content

Instantly share code, notes, and snippets.

View tnovau's full-sized avatar
🎯
Focusing

Tomás Novau tnovau

🎯
Focusing
View GitHub Profile
@tnovau
tnovau / ej4.html
Last active August 22, 2020 23:42
ej4
<html>
<head>
<style>
table#examenes,
table#examenes tr,
table#examenes td {
border: 2px solid #ddd;
border-collapse: collapse;
}
@tnovau
tnovau / createOneMongoose.js
Created November 19, 2019 14:36
Create One document - Mongoose snippet
const kitty = { name: 'Zildjian' };
/**
* @param {Object} doc
*/
const createOne = async doc => {
const savedDocument = await Cat.create(kitty);
return { ...kitty, id: savedDocument.id };
};