© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Denny Trebbin
Lead Fullstack Developer. Experimenting with bleeding-edge tech. Irregularly DJ. Hobby drone pilot. Amateur photographer.
Declaration - defining named functions
function add(a, b) { return a + b }
Expression - assigning anonymous functions - bad for debugging stack traces
const add = (a, b) => { a + b }