Как удалить средние символы в String JavaScript

var str = "Hello World";
str = str.slice(0, 3) + str.slice(4);
console.log(str)
Spotless Sable