From eb2250ea4203b019e6df997afd22a023611784b2 Mon Sep 17 00:00:00 2001 From: Aniruddh Agarwal Date: Sun, 30 Aug 2015 01:25:30 +0800 Subject: [PATCH] expanded description of 'Where art thou' bonfire --- challenges/basic-bonfires.json | 1 + 1 file changed, 1 insertion(+) diff --git a/challenges/basic-bonfires.json b/challenges/basic-bonfires.json index 539ce1d349..1660af873f 100644 --- a/challenges/basic-bonfires.json +++ b/challenges/basic-bonfires.json @@ -570,6 +570,7 @@ "difficulty": "1.55", "description": [ "Make a function that looks through an array (first argument) and returns an array of all objects that have equivalent property values (second argument).", + "For example, if the first argument is [{ first: 'Romeo', last: 'Montague' }, { first: 'Mercutio', last: null }, { first: 'Tybalt', last: 'Capulet' }], and the second argument is { last: 'Capulet' }, then you must return the first and the third objects from the array (the first argument), because they contain the property that was passed on as the second argument.", "Remember to use Read-Search-Ask if you get stuck. Write your own code." ], "challengeSeed": [