JavaScript: How to get the last character of a string in JS?
Use this code to get the last character of a string in Javascript:
- let some_string = "webdevetc.com";
- let first_char = some_string.charAt( some_string.length - 1 );
Use this code to get the last character of a string in Javascript:
- let some_string = "webdevetc.com";
- let first_char = some_string.charAt( some_string.length - 1 );
More...
Comments and discussion about How to get the last character of a string in JS?
Found this interesting? Maybe you want to read some more in this series?
Or see other topics in the JavaScript language
General JavaScript
Or see other languages/frameworks:
PHP Laravel Composer Apache CentOS and Linux Stuff WordPress General Webdev and Programming Stuff JavaScriptOr see random questions
Point all requests to one PHP file
How could you include a custom function for every single time PHP runs?
How to add the CSRF (Cross-site request forgery) token in Laravel?
What is the loop variable in a @foreach loop in Blade?
Is multiple inheritance supported in PHP?
How to force gzip compression in Apache with .htaccess
How to disable file hotlinking in Apache with .htaccess
How to return an item in Eloquent, or throw a ModelNotFoundException exception if it isn't found?
What is Agile software development?
How to fix the MySQL related "Specified key was too long error" error in Laravel