Blog
Archive for the JavaScript Category
The code below was added to the JavaScript library in ES2017 (string padding) and ES2019 (string trimming).
// Code below works …
Read more
The ability to run a template string through a function, and have control how the actual template string is made, …
Read more
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
Avoid side effects, or keep functions pure.
Use Higher-Order Functions, which are functions that receives a function an as argument or …
Read more
The ArrayList class extends AbstractList and implements the List interface. ArrayList supports dynamic arrays that can grow as needed.
Standard Java …
Read more