#advanced
Oh, you fancy huh? All the tips for an advanced developer.
Check out our pinterest page dedicated to advanced as well!
Dev Tools Capture Screenshot
Jun 06, 2019
Using dev tools you can take a screenshot of the current webpage or portion of the webpage.
Freezing Object In Javascript
Jun 04, 2019
Object.freeze() is useful to prevent an object from changing, so no new properties can be added to it, no existing properties can be removed, the enumerability can not be changed, and existing values of properties can not be changed.
Using CSS Variables
Jun 02, 2019
CSS variables also known as custom properties recently received broader browser support to a point where they can be used without much thought (except in IE 11 👎)
Using Snippets In Chrome Dev Tools
May 30, 2019
Using Chrome Dev Tools you can save and use snippets that can make your live a bit easier as a developer.
Easy Form Validation Using Regex
May 27, 2019
Using some quick regex you can create a validation check for your form's input.