You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: Write a function that returns all the frogs that ribbit
85
85
// TODO: Run the provided test to check your answer.
86
86
exportconstribbitting=(frogs: Frog[]): Frog[]=>
87
-
[]
87
+
[];
88
88
89
89
// TODO: Write a function that returns all frogs aged 8 or older
90
90
exportconstolderFrogs=(frogs: Frog[]): Frog[]=>
91
-
[]
91
+
[];
92
92
93
93
/*
94
94
5. Arr.exists
@@ -111,7 +111,7 @@ This behaviour of running map then flatten is why this function is sometimes cal
111
111
TODO: Write a function that takes a list of strings, each string containing a comma-separated list of values, and returns all of the values as an array.
0 commit comments