Categories
Uncategorized

Add Stylelint to webpack

Adding stylelint to your project has many advantages that range from being able to throw warnings and errors when the styling rules (CSS, SASS-SCSS) are broken, to being able to fix most of your warnings automatically with a single command.

Categories
Uncategorized

How to create an arrow content separator in CSS

Lets say you want to draw something similar to the following using only CSS.

Categories
interview

Format currency and date manually in Javascript

Format Currency

In case you want to implement a function to format currency instead of just using toLocaleString() then, you can use the following.