Spocoman

02. Right Place

Jan 16th, 2022 (edited)
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function rightPlace(str, char, result) {
  2.  
  3.     console.log(str.replace("_", char) === result ? `Matched` : `Not Matched`)
  4.  
  5. }
Add Comment
Please, Sign In to add comment