Skip to content

Instantly share code, notes, and snippets.

@Sixl-Daniel
Created October 25, 2020 20:57
Show Gist options
  • Save Sixl-Daniel/d9075be7fe2bea563ad5788af480f84c to your computer and use it in GitHub Desktop.
Save Sixl-Daniel/d9075be7fe2bea563ad5788af480f84c to your computer and use it in GitHub Desktop.
Useful functions JS
function calculateGoldenRatio(length) {
const phi = 1.6180339887498948;
const a = Math.round(length / phi)
const b = length - a;
return { a: a, b: b };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment