[javascript] Function , Array.from() , arguments , console.log(myFunction(10,20)); // x와 y 값 구하기 응용버전
본문 바로가기

컴퓨터공부/Javascript

[javascript] Function , Array.from() , arguments , console.log(myFunction(10,20)); // x와 y 값 구하기 응용버전

by Life & study 2023. 7. 29.
반응형

[javascript] Function , Array.from() , arguments , console.log(myFunction(10,20)); // x와 y 값 구하기 응용버전

 

DRY 규칙 반복하지 마세요

 

DRY
D- Don't 
R-Repeat
Y-Yourself

 

 

기본 Function 

 

function multiply(x, y) {
  return x * y;
}

const result1 = multiply(2, 4);
console.log(result1);

 

출력 

8

 

const result2 = multiply(5,6);

출력

30

 

Array.from() 메서드를 사용하여 이터러블 객체

 

// Array.from() 메서드를 사용하여 이터러블 객체를 배열로 변환합니다.

const iterable = "Hello";
const arr = Array.from(iterable);


// 생성된 배열을 출력합니다.

console.log(arr); // ["H", "e", "l", "l", "o"]

 

 

arguments, result, prompt의 입력값


arguments, result, prompt의 입력값

function myFunction(x, y) {
  // arguments를 출력합니다. 사용자 입력값을 확인한다.
  console.log(arguments);

  return [x, y];
}

// 함수를 호출하고 반환값을 받습니다.
const x = prompt("Enter the value for x:"); // x 값을 입력받습니다.
const y = prompt("Enter the value for y:"); // y 값을 입력받습니다.

const result = myFunction(x, y);

console.log(result); // 결과값을 확인합니다.

 

 

arguments ,console.log(myFunction(10,20)); // x와 y 값 구하기 응용버전

 

arguments ,console.log(myFunction(10,20)); // x와 y 값 구하기 응용버전

function myFunction(x, y) {
  // arguments를 출력합니다. 사용자 입력값을 확인한다.
  console.log(arguments);

  return [x, y];
}


console.log(myFunction(10,20)); // x와 y 값을 출력합니다.

 

출력

 

2번째 arguments 의 입력값을 무한히 아는 방법

 

문법

...arguments 

 

을 사용하면 사용자의 입력값을 무한히 받을 수 있다.

 

공부의 방향

공부의 방향

 

 Array.from
 Array.fill
 let [][]
 .forEach
 .value
 .reduce

반응형

댓글