assignment02.js 336 Bytes
function slice(str, start, end) {

}
var str = "Apples are round, and apples are juicy.";
var sliced = str.slice(1, 3);

// String.slice method와 동일하게 동작하는 slice function을 구현하시오.
// 아래의 console.log 2개의 출력이 동일해야 함 

console.log( sliced );
console.log( slice(str, 1, 3));