code.ashish.me

Atom feed

Recently added: 128 Longest Consecutive Sequence, 347 Top K Frequent Elements, 045 Jump Game 2, 228 Summary Ranges, 219 Contains Duplicate 2

05 Confirm Ending

/**
 * Created by Ashish Patel
 * Copyright © 2017 ashish.me
 * ashishsushilpatel@gmail.com 
 */

/**
 * Program:
 * Check if a string (first argument, str) ends with the given target string (second argument, target).
 */

 function confirmEnding(str, term) {
    return str.substring(str.length - term.length, str.length) === term;
 }

 console.log(confirmEnding("Beautiful", "l"));

Created 2019-11-24T04:53:20+05:30 · Edit