Responsive Web Design and Regular Expressions - lucasjwilber/seattle-301d52 GitHub Wiki

CSS grids: *grids are another alternative to Flexbox when it comes to setting up page layout. Compared to flexbox, I think grids take a little more code to set up but offer more precision, with less flexibility. *add "display: grid" to a container box to use *grid-template-rows will define grid rows, going from the top of the page down. *grid-template-columns will define grid columns, from left to right. *both of the above rules accept px, em, % or fr (fractional) values. *the two rules above can be combined into a single rule using the syntax "grid-layout: [row heights]/[column widths]"

Regular Expressions: *aka regex *a powerful way to find specific strings. *can be used to do things like find all email addresses in a file, find a specific name, or make sure a form was filled out in a specific way. *uses very concise syntax which makes it easy to write but not so easy to remember.

I wonder if there are any situations where it would be better to use regex to parse stringified JSON rather than JSON.parse()?