node to know if a string ends with extension or not code example
Example 1: how to find out what a string ends with in javascript
function isJS(path) {
return /jsx?$/.test(path)
}
Example 2: how to compare a string with its ending in javascript
function solution(str, ending){
return str.indexOf(ending, str.length - ending.length) !== -1;
}