From 90942956ca5b38ee71a034a117d7e2bb3f4788a5 Mon Sep 17 00:00:00 2001 From: Manish Date: Tue, 22 Aug 2023 10:57:04 +1000 Subject: [PATCH] Data Structures: Type Arrays --- Data Structures/typedArrays.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Data Structures/typedArrays.js diff --git a/Data Structures/typedArrays.js b/Data Structures/typedArrays.js new file mode 100644 index 0000000..8471c15 --- /dev/null +++ b/Data Structures/typedArrays.js @@ -0,0 +1,4 @@ +// https://www.freecodecamp.org/learn/coding-interview-prep/data-structures/typed-arrays + +var buffer = new ArrayBuffer(64); +var i32View = new Int32Array(buffer);