Blog


String Padding and Trimming
Posted on September 10, 2020 in JavaScript by Matt Jennings

The code below was added to the JavaScript library in ES2017 (string padding) and ES2019 (string trimming).

.padStart();

// Code below works
Read more…


Tagged Template Literals
Posted on September 10, 2020 in JavaScript by Matt Jennings

Definition

The ability to run a template string through a function, and have control how the actual template string is made,
Read more…


Template Strings
Posted on September 10, 2020 in JavaScript by Matt Jennings

Template Strings are also called String Interpolation, and used in other programming languages like C#.

Code example:

var name = “Kyle Simpson”;
var email
Read more…


Why CSS Grid and Browser Compatibility
Posted on September 8, 2020 in CSS by Matt Jennings

Why CSS Grid?

No “row” markup required.
Grid is designed to work in 2 dimensions.
Use Flexbox for UI elements, but use Grid
Read more…


Responsive Image <picture> Element
Posted on September 8, 2020 in HTML by Matt Jennings

Definition of <picture> element according to Mozilla Development Network:
The HTML <picture> element contains zero or more Read more…

To Top ↑