Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 305 Bytes

(7 kyu) String ends with.md

File metadata and controls

12 lines (8 loc) · 305 Bytes

String ends with (7 kyu)

https://www.codewars.com/kata/string-ends-with/

Complete the solution so that it returns true if the first argument(string) passed in ends with the 2nd argument (also a string).

Examples:

solution("abc", "bc") //returns true
solution("abc", "d") //returns false