blob: 59bf5ac9879d8c31209b8ae1a358cc4852cd119d [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.indexof
es5id: 15.4.4.14-9-b-ii-9
description: >
Array.prototype.indexOf - both array element and search element
are String, and they have exactly the same sequence of characters
---*/
assert.sameValue(["", "ab", "bca", "abc"].indexOf("abc"), 3, '["", "ab", "bca", "abc"].indexOf("abc")');