summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js')
-rw-r--r--test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js23
1 files changed, 11 insertions, 12 deletions
diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js
index dfd739127..1f93af90c 100644
--- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js
+++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js
@@ -7,17 +7,16 @@ es5id: 15.4.4.21-9-c-ii-3
description: Array.prototype.reduce - callbackfn takes 4 arguments
---*/
-var bCalled = false;
+ var bCalled = false;
+ function callbackfn(prevVal, curVal, idx, obj)
+ {
+ bCalled = true;
+ if(prevVal === true && arguments.length === 4)
+ return true;
+ else
+ return false;
+ }
+ var arr = [0,1,2,3,4,5,6,7,8,9];
-function callbackfn(prevVal, curVal, idx, obj)
-{
- bCalled = true;
- if (prevVal === true && arguments.length === 4)
- return true;
- else
- return false;
-}
-var arr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
-
-assert.sameValue(arr.reduce(callbackfn, true), true, 'arr.reduce(callbackfn,true)');
+assert.sameValue(arr.reduce(callbackfn,true), true, 'arr.reduce(callbackfn,true)');
assert.sameValue(bCalled, true, 'bCalled');