# C++

Building Map, Filter, and Reduce in C++ with Templates and Iterators

For funsies, let's implement JavaScript's Map(), Filter(), and Reduce() in C++.

Link

Bit Twiddling in JavaScript

Recently, I came across a fun C++ challenge to count the number of set bits in an integer. Spending a lot of time in the browser, I wanted to re-implement it in JavaScript.

Link