Show HN: A website for browsing JavaScript language proposals/champions and more
proposals.es10 pointsby saadq2 comments
let arr = [1, 2, 3]
let sumOfSquares = arr.map(n => n * n).reduce((a, b) => a + b) // 14
Python: arr = [1, 2, 3]
sum_of_squares = reduce(lambda a, b: a + b, map(lambda n: n * n, arr)) # 14
Some of the main features:
* All proposals are colocated in one place and sorted by stars (In the tc39/proposals GitHub repo it is split up in 6 different markdown files with proposals in no particular order) * You can filter proposals via search * Proposal READMEs as well as additional details show side by side * Proposals without a README still render as an iframe
You can find the source on GitHub: https://github.com/saadq/proposals.es. Built with Next.js, React, and TypeScript.