TurboScript icon indicating copy to clipboard operation
TurboScript copied to clipboard

User wants to have "sizeof" function

Open nidin opened this issue 7 years ago • 0 comments

What? User wants to have sizeof function to get storage size of a variable or type in bytes.

How?

let a = new Array<float32>(10);
console.log(sizeof a); //48 => 4 (sizeof float32) x 10 + 8 (array header, byte length + element size)

nidin avatar Mar 16 '17 15:03 nidin