{ ES6 snippets }

R. Alex Anderson ?

R. Alex Anderson ? @ralex1993

??? Tip: awaiting is an execution-blocking operation, as in the rest of the function won't execute until the awaited promise is resolved. Run promises concurrently by awaiting references to the already executed promises! (You can also do this with Promise.all()) https://t.co/Vp1C6pOXkJ

?Did you know: ES2016 modules has the `import X from ...` statement. but there’s also the `export X from ...` statement. Very useful if you have a top-level “bundling” module that just re-exports bits and bobs from other smaller modules. https://t.co/yqVVcACHz1

ES6