mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-13 22:52:52 +00:00
7 lines
178 B
JavaScript
7 lines
178 B
JavaScript
test("indexing the array doesn't strip whitespace if it's a number", () => {
|
|
var a = [];
|
|
a[1] = 1;
|
|
|
|
expect(a["1"]).toBe(1);
|
|
expect(a[" 1 "]).toBeUndefined();
|
|
});
|