Skip to content

YesnielX/typescript-find-distance-between-two-points

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Typescript find the distance between two points

Example

let point1 = [7, 2];
let point2 = [2, 5];

const d = new find_distance(point1, point2);
console.log("Distance Result:", d.distance());

// Output: 5.830951894845301

About

find the distance between two points with typescript

Topics

Resources

Stars

Watchers

Forks