✏️8.4 문장을 호출한 곳으로 옮기기 (Move Statements to Callers)
emitPhotoData(outStream, person.photo);
function emitPhotoData(outStream, photo){
outStream.write(photo.title);
outStream.write(photo.location);
}emitPhotoData(outStream, person.photo);
outStream.write(photo.location);
function emitPhotoData(outStream, photo){
outStream.write(photo.title);
}🧷 배경
🧷 절차
🧷 예시
Previous8.3 문장을 함수로 옮기기 (Move Statements into Function)Next8.5 인라인 코드를 함수 호출로 바꾸기 (Replace Inline Code with Function Call)
Last updated