Edit in JSFiddle

		// 원본 배열
		var testArray = ["aaa", "bbb", "ccc", "ddd"];

		// map 메소드를 통해 새로운 배열 생성
		var newArray = testArray.map(function (item, index, array) {
			return item + "NEW";
		});

		// 원본 배열은 건들지 않았다는 것을 확인
		console.log(testArray);

		// 새로운 배열
		console.log(newArray);