Skip to content

Instantly share code, notes, and snippets.

@julienetie
Last active July 4, 2020 15:44
Show Gist options
  • Save julienetie/b0b41679955eff9557ee40fec14e5967 to your computer and use it in GitHub Desktop.
Save julienetie/b0b41679955eff9557ee40fec14e5967 to your computer and use it in GitHub Desktop.
ho-js-8.js
const distance = (ax, ay) => (bx, by) => Math.hypot(ax - bx, ay - by);
const finalDistance = distance(5,5);
/*
console.log(finalDistance(10,10)) // 7.0710678118654755
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment