0일차: 30일 코드 - 해커 뱅크


안녕하세요.나는 이미 자바스크립트를 사용하여 HackerRank에서 30일 동안의 코드 도전을 해결하기 시작했다.나는 모든 도전적인 해결 방안과 몇 가지 관건을 발표하여 해결 방안을 이해할 것이다.
자, 시작합시다.

0일


작업:-


'이 도전을 완성하려면 stdin에서 변수 print Hello,World에 한 줄을 입력해야 합니다.마지막으로 두 번째 줄에서 변수의 값을 인쇄합니다.

솔루션: -


function processData(inputString) {
    // This line of code prints the first line of output
    console.log("Hello, World.");

    //Write the second line of output that prints the contents of 'inputString' here.
    console.log(inputString)
}

설명: -

  • 여기는 기본 컨트롤러 로그만 사용합니다.
  • 두 번째 컨트롤러 로그는 함수의 매개 변수로 'inputString' 의 내용을 출력합니다.
  • 감사합니다!!기대해주세요!!

    좋은 웹페이지 즐겨찾기