Logo

Programming-Idioms

History of Idiom 5 > diff from v367 to v368

Edit summary for version 368 by r_p4rk:
New JS implementation by user [r_p4rk]

Version 367

2019-02-09, 22:01:57

Version 368

2019-09-26, 13:58:01

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Illustration

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Illustration
Code
const point = { x: 1, y: 2 };