JavaScript: Create a new string from a given string, removing the first and last characters of the string if the first or last character are 'P'
JavaScript Basic: Exercise-67 with Solution
Write a JavaScript program to create a new string from a given string. This program removes the first and last characters of the string if the first or last character is 'P'. Return the original string if the condition is not satisfied.
Pictorial Presentation:

Sample Solution:
HTML Code:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JavaScript program to create a new string from a given string, removing the first and last characters of the string if the first or last character are �P</title>
</head>
<body>
</body>
</html>
JavaScript Code:
function nop(str) {
let start_pos = 0;
let end_pos = str.length;
if (str.length > 0 && str.charAt(0) == 'P')
{
start_pos = 1;
}
if (str.length > 1 && str.charAt(str.length - 1) == 'P')
{
end_pos--;
}
return str.substring(start_pos, end_pos);
}
console.log(nop("PythonP"));
console.log(nop("Python"));
console.log(nop("JavaScript"));
Sample Output:
ython ython JavaScript
Flowchart:

ES6 Version:
function nop(str) {
let start_pos = 0;
let end_pos = str.length;
if (str.length > 0 && str.charAt(0) == 'P')
{
start_pos = 1;
}
if (str.length > 1 && str.charAt(str.length - 1) == 'P')
{
end_pos--;
}
return str.substring(start_pos, end_pos);
}
console.log(nop("PythonP"));
console.log(nop("Python"));
console.log(nop("JavaScript"));
Live Demo:
See the Pen JavaScript - removing the first and last characters of the string if the first or last character are P - basic-ex-67 by w3resource (@w3resource) on CodePen.
Contribute your code and comments through Disqus.
Previous: Write a JavaScript program to display the city name if the string begins with "Los" or "New" otherwise return blank.
Next: Write a JavaScript program to create a new string taking the first and last n characters from a given string.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
JavaScript: Tips of the Day
Calculates the greatest common divisor between two or more numbers/arrays
Example:
const tips_gcd = (...arr) => { const gcd = (x, y) => (!y ? x : tips_gcd(y, x % y)); return [...arr].reduce((p, q) => gcd(p, q)); }; console.log(tips_gcd(5, 25)); console.log(tips_gcd(...[8, 16, 32]));
Output:
5 8
- Weekly Trends
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
- JavaScript functions Exercises
- Python Tutorial
- Python Array Exercises
- SQL Cross Join
- C# Sharp Array Exercises
We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook