Guest User

Untitled

a guest
Feb 14th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. # Parse file extension
  2.  
  3. ```
  4. let file = 'hello.world.jpg'
  5. let result = file.substring(file.lastIndexOf('.') + 1);
  6.  
  7. console.log(result) // jpg
  8. ```
Add Comment
Please, Sign In to add comment