conststr='The cat (Felis catus) is a domestic species of small carnivorous mammal.';str.slice(31);// "stic species of small carnivorous mammal."str.slice(4,19);// "cat (Felis catu"str.slice(-4);// "mal."str.slice(-9,-5);// "s ma"
let str1 = 'Cats are common pets throughout the world, and their worldwide population exceeds 500 million as of 2007.',
str2 = str1.slice(1, 8),
str3 = str1.slice(4, -2),
str4 = str1.slice(12),
str5 = str1.slice(30);
str2; // "ats are"
str3; // " are common pets throughout the world, and their worldwide population exceeds 500 million as of 200"
str4; // "mon pets throughout the world, and their worldwide population exceeds 500 million as of 2007."
str5; // "t the world, and their worldwide population exceeds 500 million as of 2007."
let str = 'Cats are common pets throughout the world';
str.slice(-1); // "d" str.length-1 ๋ถํฐ ๋๊น์ง์ด๋ค.
str.slice(-1, -1); // ""
str.slice(-3); // "rld" str.length - 3 ๋ถํฐ ๋๊น์ง์ด๋ค.
str.slice(-3, -1); // "rl" str.length - 3 ๋ถํฐ str.length - 1์ ํฌํจํ์ง ์์
str.slice(0, -1); // "Cats are common pets throughout the worl" 0๋ถํฐ str.length - 1์ ํฌํจํ์ง ์์