0일차: 30일 코드 - 해커 뱅크
1451 단어 helpcodenewbiewebdevjavascript
안녕하세요.나는 이미 자바스크립트를 사용하여 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)
}
설명: -
Reference
이 문제에 관하여(0일차: 30일 코드 - 해커 뱅크), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/pranav589/day-0-30-days-of-code-hackerrank-35m9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)