blob: 1592ab036cec973c855f28cbb7683eaa7b7d8bce [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.lastindexof
description: Array.prototype.lastIndexOf applied to Number object
---*/
var obj = new Number(-3);
obj.length = 2;
obj[1] = true;
assert.sameValue(Array.prototype.lastIndexOf.call(obj, true), 1, 'Array.prototype.lastIndexOf.call(obj, true)');