JS: Change note and updated help

This commit is contained in:
Asger Feldthaus
2020-06-15 17:34:36 +01:00
parent 7091a9f704
commit 824054ba62
4 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
function distance({x: number, y: number}) {
return Math.sqrt(x*x + y*y);
}