buzz icon indicating copy to clipboard operation
buzz copied to clipboard

`const` list, map etc.

Open giann opened this issue 1 year ago • 0 comments

Right now this:

const list = [1,2,3];

Prevents any assignment to list but does not prevent modifications to the actual list.

We already have const objects do we can introduce the same for lists and maps:

var list = const [1,2,3]; | The variable can change but not the list
var map = const {"one": 1};

giann avatar Sep 03 '24 07:09 giann