let str = 'Hello world! This is some string'; //Remove w which is on 6th character str = str.substring(0, 6) + str.substring(6 + 1, str.length);