Skip to content

Instantly share code, notes, and snippets.

@navasiloy
navasiloy / README.md
Last active August 4, 2020 14:30 — forked from FrancesCoronel/sampleREADME.md
Elite HRV Readme

Elite HRV

React Native Test task

10 week program application

Write an application in React Native which helps to improve users breathing experience.

Business requirements:

  • Every week has subsets of check items
  • Once all checks are checked the "Unlock Week #" is shown
const sub = function(init, ...substractors) {
if (!substractors.length) {
return init;
}
return init - substractors.reduce((a, v) => a + v)
}