PointWhen navigating your screen, nut.js relies on the Point datatype to represent points in 2D space.A Point is a simple data structure holding an x and y coordinate.Sample#const p = new Point(10, 100); console.log(p);Copy