Ответ:
function removeExclamationMarks(str) {
let result = '';
for (let i = 0; i < str.length; i++) {
if (str[i] !== '!') {
result += str[i];
}
return result;
let input = 'Hello! World!';
let output = removeExclamationMarks(input);
console.log(output); // Выведет "Hello World"
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
function removeExclamationMarks(str) {
let result = '';
for (let i = 0; i < str.length; i++) {
if (str[i] !== '!') {
result += str[i];
}
}
return result;
}
let input = 'Hello! World!';
let output = removeExclamationMarks(input);
console.log(output); // Выведет "Hello World"