summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/find/return-found-value-predicate-result-is-true.js
blob: 073201a279c5a2caecc48ef193ed65a30a08dab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.find
es6id: 22.1.3.8
description: >
  Return found value if predicate return a boolean true value.
info: |
  22.1.3.8 Array.prototype.find ( predicate[ , thisArg ] )

  ...
  8. Repeat, while k < len
    ...
    d. Let testResult be ToBoolean(Call(predicate, T, «kValue, k, O»)).
    e. ReturnIfAbrupt(testResult).
    f. If testResult is true, return kValue.
  ...
features: [Symbol]
---*/

var arr = ['Shoes', 'Car', 'Bike'];
var called = 0;

var result = arr.find(function(val) {
  called++;
  return true;
});

assert.sameValue(result, 'Shoes');
assert.sameValue(called, 1, 'predicate was called once');

called = 0;
result = arr.find(function(val) {
  called++;
  return val === 'Bike';
});

assert.sameValue(called, 3, 'predicate was called three times');
assert.sameValue(result, 'Bike');

result = arr.find(function(val) { return 'string'; });
assert.sameValue(result, 'Shoes', 'coerced string');

result = arr.find(function(val) { return {}; });
assert.sameValue(result, 'Shoes', 'coerced object');

result = arr.find(function(val) { return Symbol(''); });
assert.sameValue(result, 'Shoes', 'coerced Symbol');

result = arr.find(function(val) { return 1; });
assert.sameValue(result, 'Shoes', 'coerced number');

result = arr.find(function(val) { return -1; });
assert.sameValue(result, 'Shoes', 'coerced negative number');