From 0b721460e6493cafbb240de51e98bb84d2521f5b Mon Sep 17 00:00:00 2001 From: SatVeer Singh <85070570+iSatVeerSingh@users.noreply.github.com> Date: Mon, 22 Aug 2022 22:51:03 +0530 Subject: [PATCH] fix: typo in live example of array-findlastindex.js (#2255) fix: typo --- live-examples/js-examples/array/array-findlastindex.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/live-examples/js-examples/array/array-findlastindex.js b/live-examples/js-examples/array/array-findlastindex.js index c3105bc09..15d576eda 100644 --- a/live-examples/js-examples/array/array-findlastindex.js +++ b/live-examples/js-examples/array/array-findlastindex.js @@ -3,4 +3,4 @@ const array1 = [5, 12, 50, 130, 44]; const isLargeNumber = (element) => element > 45; console.log(array1.findLastIndex(isLargeNumber)); -// expected output: 3 (of element with value: 30) +// expected output: 3 (of element with value: 130)