mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
15 lines
374 B
JavaScript
15 lines
374 B
JavaScript
test("string literal indexing", () => {
|
|
var s = "foo";
|
|
expect(s[0]).toBe("f");
|
|
expect(s[1]).toBe("o");
|
|
expect(s[2]).toBe("o");
|
|
expect(s[3]).toBeUndefined();
|
|
});
|
|
|
|
test("string object indexing", () => {
|
|
var s = new String("bar");
|
|
expect(s[0]).toBe("b");
|
|
expect(s[1]).toBe("a");
|
|
expect(s[2]).toBe("r");
|
|
expect(s[3]).toBeUndefined();
|
|
});
|