Skip to content

Instantly share code, notes, and snippets.

View davidc6's full-sized avatar

David Chubabriya davidc6

  • London, UK
  • 21:40 (UTC +01:00)
View GitHub Profile
@davidc6
davidc6 / fp-loop.js
Last active June 15, 2021 08:00
Loop the functional way, without mutating any variables
// this function allow us to build an array / list of objects that contain common props and props that are generated dynamically
const numberOfIterations = 10
const commonProps = {
propA: 1,
propB: 2
}
// -------
// -- 1 --