This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
table#examenes, | |
table#examenes tr, | |
table#examenes td { | |
border: 2px solid #ddd; | |
border-collapse: collapse; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const kitty = { name: 'Zildjian' }; | |
/** | |
* @param {Object} doc | |
*/ | |
const createOne = async doc => { | |
const savedDocument = await Cat.create(kitty); | |
return { ...kitty, id: savedDocument.id }; | |
}; |