FeatureNameAndFileType.extension
Examples:
DashboardComponent.jsx
I hereby claim:
To claim this, I am signing this object:
| // pseudo code for creating a new tracker and saving to the user that created it | |
| (req, res) => { | |
| const userId = req.body.userId; | |
| const trackerData = { | |
| name: req.body.name, | |
| description: req.body.name, | |
| // more stuff | |
| } | |
| let trackerId; |
| \w+[.|\w+]+@\w+[.|\w+]+\S |
| const app = { | |
| get: (route, cb) => { | |
| console.log('sending user to this route:' + route); | |
| const req = { | |
| user: 'Doug' | |
| }; | |
| const res = { | |
| author: 'Annie', | |
| sendData: (data) => { | |
| console.log('sending this data -> ' + JSON.stringify(data)) |
| class UserCard { | |
| constructor(userName, departmentName) { | |
| this.userName = userName; | |
| this.departmentName = departmentName; | |
| this.setHandlers(); | |
| } | |
| setHandlers() { | |
| $('.profile-container').hover(() => { | |
| // do the flippy thang |
Here you'll find a list of articles/blog posts that I've pulled from the latest issues of various weekly newsletters. Enjoy!
JavaScript Errors and Stack Traces in Depth
#Flexbox Resources
#Top 3 recommended A Complete Guide to Flexbox | CSS-Tricks
How To Get Started With CSS Flexbox
#More resources