I have a list of objects as below and need to find euclidean distance of test_obj against all items in the list.
object_list = [ [1,2,3],
[10,20,30],
[15,25,35],
[20,30,40] ]
test_obj = [15,25,35]
I found numpy.linalg.norm() to find this in python. Is there any similar method or utility to do same in NodeJS?