remove first and last character from string javascript

let str = 'Hello';
 
str = str.slice(1);
console.log(str);
 
/*
    Output: ello
*/

4.3
10
Dooburt 100 points

                                    // best implementation
const removeChar = (str) => str.slice(1, -1);

4.3 (10 Votes)
0
4.67
3
Tenoshadow 110 points

                                    var yourString = "/installers/services/";

var result = yourString.slice(1,-1);

4.67 (3 Votes)
0
0
0
WDC 90 points

                                    // Hey buddy, here are different implementation, choose your favourite !!

// best implementation
const removeChar = (str) => str.slice(1, -1);

// regex
function removeChar(str) {
  return str.replace(/^.|.$/g, "");
}

// without slice
function removeChar(str) {
  const array = str.split("");
  let res = "";
  for (let i = 1; i < array.length - 1; i++) res += array[i];
  return res;
}

0
0
3.75
4
IceNine 105 points

                                    const removeChar = (str) => str.slice(1, -1);

3.75 (4 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
javascript slice string remove first and last delete first character string js javascript remove 1st character of string how to remove the first character of a string javascript js drop first character of string javascript remove first character from string if zero remove part of first string nodejs remove first letter in string js remove 1st and last character from string javascript remove first character from string node.js javascript delete first letter of string js remove first char from string remove first character on string javascript removing the first character of a string js remove first leter in js string js remove first 4 characters from string javascript remove string first character javascript remove first character javascrtip remove first chareter from string remove first char striogn js remove the first char from string javascript remove first char js javascript remove first letter from string javascript substring remove first character js remove first x elements from string remove first character array js javascript remove first 4 characters from string javascript how to remove first characters from string js remove first element from string javascript delete first character of string get rid of first char in string js nodejs remove first character from string how to remove the first letter of a string in javascript cut first caracher from string js remove first word in a string javascript how to remove 1st element of a string js trim first character in javascript remove first item in js string function that removes the first and last characters of a string in javascript how to remove first and last element array and charachters js cut off first character replace first and last character in string javascript how to delete first element from a string in javascript js string remove first letter JavaScript remove first n chars from string how to remove the first element from a string in javascript remove first char from string javascript remove first cracter string js remove first element of string javascript remove first character from string and join last position of string javascript cut first character from string js remove first string char js remove first character from string typescript delete first characters in string js js string delete first character js remove first char in string trimming the first and last char of a string in js remove first 4 characters in javascript remove the first and the last character from a string javascript js delete first letter of text GET THE FIRST CHARECTOR and remove OF A STRING IN JAVASCRIPT javascript string remove first character and last character remove first character and last character from string javascript remove 1st character from string javascript remove first letter and add it to the end javascript delete first and last character in string js js delete first character of string remove first character from array javascript how to remove first character javascript type script get string with removing first charactor remove first and last character from string node js remove first and last character from string javascript how to remove the first character of a string in javascript remove first character from strings in array javascript js remove first letter of string js string remove first character how t remove the very first charater in javascript how to remove the first item of a string javascript remove first character from string in typescript how to remove first and last character from string in javascript remove first element from string javascript javascript how to remove first character and last character of string js remove first letter string remove first and last character javascript filter first character of string javascript remove first letter javascript remove first letter of a string js how to remove first letter of string js remove first character javascript method removes the first and last characters of a string in javascript javascript remove first letter remove first index from string javascript remove first character js remove first char from string js cut first letter of string javascript delete first character js how to delete the first character in a string js how to remove first and last char from string in javascr first and last symbol remove from string using js remove firstr character from string nodejs how to remove first character from string in js how to remove first index of string in javascript js remove first character from string javascript remove first character in string js trim first and last character how to remove first char and last char javascript how to delete the first character in a string javascript javascript trim first and last character js delete first and last symbol of the string js remove first characters from string javascript strip first and last character javascript string remove last and first character a function that removes the first and last characters of a string javascript remove the first and last character of a string in javascript how to remove first character from string in javascript remove first and last character of string javascript js remocve first characcter of a string javascript remove first and last element from string javascript delete first and last character string javascript remove first and last character of string cutoff first string in javascript string remove first element remove first and last character from string javascript remove two first char js how to remove first and last character in javascript remove first 2 characters js remove first 4 characters from string javascript strip first character javascript javascript string remove first and last character javascriopt remove first two letters of string js remove first and last char from string remove first letter from string javascript how to tring string first character in javascript get rid of first character in string javascript JavaScript to remove the first and last character how to replace first and last character of string in javascript javascript string remove leading characters remove first 10 characters from string javascript remove first char of string js javascript rid first and last chars in string remove letter from number in javascript remove first and last char js how to remove first and last character from string in typescript es6 remove first character from string how to remove first and last character of a string in javascript javascript remove first element from string nodejs remove first and last charactear of string slice first and last character javascript get rid of first n of characters in string javascript javascript remove first 2 characters from string remove first and last character js remove first sring letter js how to remove first character from string javascript remove first letter in string javascript javascript string remove first character skip first two characters in javascript remove first character and last character in javascript remove first character of a string javascript js remove first string javascript remove first char from string javascript remove character first javascript remove first x characters from string remove the first letter js remove start characters from string javascript remove first element in string javascript pop first character of string javascript remove first character from string nodejs remove first character and last character from string remove first character of string javascript js string remove first and last character remove first letter in javascript javascript remove first and last character js trim to first letter in a string remove first and last character from string node.js javascript remove first and last character from string remove the first and last character of a string javascript js how to remove first character from string javascript remove first 2 element form string remove first character from string js remove first characters from string javascript javascript remove first and last characters from string js remove first character remove first and last five letters of the string javascri;t javascript remove first character from string trim first and last 3 character javascript remove first letter of a string javascript how to get string charecter discard at first and last in js node js remove first and last character from string javascript remove first and last character string how to remove first letters javascript javascript string delete first three characters javascript remove first letter of string js remove first and last character from string remove first and last char from string javascript slice first character javascript how to remove first and last character in a string typescript how to remove first character in a string typescript remove one offucrence of letter in string javascript delete first character javascript how to remove first letter from string in javascript remove first character from string javascript remove first and last character javascript js remove character javasscript remove char from string remove first two letter js how to remove the first digit of an string in react string remove first character javascript remove first 2 charater js javascript remove first ccharacters from string remove first 2 chars javascript
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source