임의의 항목을 대체하려면 map()과 함께 random()을 사용하십시오.
예시
다음은 코드입니다 -
function substituteRandomValue(names, size) { return function () { const index = new Set(); do { index.add(Math.floor(Math.random() * names.length)); } while (index.size < size) return names.map((value, counter) => index.has(counter) ? 'Adam' : value); }; } var names = ['John', 'David', 'Bob', 'Mike', 'Carol', 'Sam'], result = substituteRandomValue(names, 2); console.log(...result());
위의 프로그램을 실행하려면 다음 명령을 사용해야 합니다 -
node fileName.js.
여기에서 내 파일 이름은 demo278.js입니다.
출력
이것은 콘솔에 다음과 같은 출력을 생성합니다 -
PS C:\Users\Amit\javascript-code> node demo278.js John David Bob Adam Carol Adam