다음이 배열이라고 가정해 보겠습니다. var theValuesIn3DArray = [75, [18, 89], [56, [97], [99]]]; Math.max() 내에서 flat()의 개념을 사용하여 가장 큰 수를 얻으십시오. 예시 var theValuesIn3DArray = [75, [18, 89], [56, [97], [99]]]; Array.prototype.findTheLargestNumberIn3dArray = function (){ return Math.max(...this.flat(Infinit
다음이 null이 아닌, null 및 정의되지 않은 값이 있는 배열이라고 가정해 보겠습니다. - var firstName=["John",null,"Mike","David","Bob",undefined]; 다음 코드를 사용하여 정의되지 않았거나 null 케이스를 확인할 수 있습니다. - 예시 var firstName=["John",null,"Mike","David","Bob",undefine
이를 위해 특정 날짜 시간의 시간을 추출하고 setTimeout()을 사용하여 함수를 호출합니다. 코드는 다음과 같습니다 - 예시 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document<
innerHTML을 설정하는 올바른 구문은 다음과 같습니다 - document.getElementById(“yourIdName”).innerHTML=”yourValue”; 이제 innerHTML을 설정하는 방법을 살펴보겠습니다 - 예시 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" c
다음이 비어 있지 않고 비어 있는 값을 가진 배열이라고 가정해 보겠습니다. − studentDetails[2] = "Smith"; studentDetails[3] = ""; studentDetails[4] = "UK"; function arrayHasEmptyStrings(studentDetails) { for (var index = 0; index < studentDetails.length; index++) { 배열에 빈 문자열이 있는지 확인하는
예를 들어 배열과 숫자 n을 받고 배열을 n 요소만큼 회전시키는 JavaScript 함수를 작성해야 한다고 가정해 보겠습니다. 예:입력 배열이 -인 경우 const arr = [12, 6, 43, 5, 7, 2, 5]; 숫자 n은 3, 그러면 출력은 다음과 같아야 합니다. - const output = [5, 7, 2, 5, 12, 6, 43]; 이 함수의 코드를 작성해 봅시다 - 예시 다음은 코드입니다 - // rotation const arr = [12, 6, 43, 5, 7, 2, 5]; const rotateByOn
우리는 세 개의 숫자 A, B, N을 받아 짝수 위치의 자릿수와 홀수 위치의 자릿수의 합이 각각 A와 B로 나누어지는 N자리 숫자의 총 개수를 찾는 JavaScript 함수를 작성해야 합니다. 예시 이 함수의 코드를 작성해 봅시다 - const indexSum = (num, sumOdd = 0, sumEven = 0, index = 0) => { if(num){ if(index % 2 === 0){ &nb
문장에 특정 문자가 몇 번 나타나는지 찾는 JavaScript 함수를 작성해야 합니다. 예시 이 함수의 코드를 작성해 봅시다 - const string = 'This is just an example string for the program'; const countAppearances = (str, char) => { let count = 0; for(let i = 0; i < str.length; i++){ if(str[i] !== c
두 숫자 사이에 공통 소인수가 없는 경우(1은 소수가 아님) 공소수라고 합니다. 예를 들어 - 4 and 5 are co-primes 9 and 14 are co-primes 18 and 35 are co-primes 21 and 57 are not co-prime because they have 3 as the common prime factor 우리는 두 개의 숫자를 받아 공소이면 true를 반환하고 그렇지 않으면 false를 반환하는 함수를 작성해야 합니다. 예시 이 함수의 코드를 작성해 봅시다 - const areCop
다음과 같은 객체 배열이 있다고 가정해 보겠습니다. - data = [ {"Age":26,"Level":8}, {"Age":37,"Level":9}, {"Age":32,"Level":5}, {"Age":31,"Level":11}, {"Age":null,&quo
네, 부모 클래스와 자식 클래스는 같은 이름의 메서드를 가질 수 있습니다. 예시 class Parent { constructor(parentValue) { this.parentValue = parentValue; } //Parent class method name which is same as Child Class method name. showValues() { c
이를 위해 id 속성과 함께 jQuery()를 사용합니다. 다음은 코드입니다 - 예시 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel=
다음이 우리 어레이 &mius;라고 가정해 보겠습니다. var subjectNameAlongWithMarks = [ ["JavaScript", 78], ["Java", 56], ["JavaScript", 58], ["MySQL", 77], ["MongoDB", 75], ["Java", 98
테이블에 삽입된 null 값을 없애기 위해서는 값을 입력할 때 조건을 확인해야 합니다. NULL을 확인하는 조건은 다음과 같아야 합니다. - while( !( yourVariableName1==null || yourVariableName2==null || yourVariableName3==null…...N){ // yourStatement1 . . N } 위의 논리는 null 값 삽입을 허용하지 않습니다. 이제 for 루프
이를 위해 toString(utf8)의 개념을 사용합니다. 다음은 코드입니다 - 아래 코드에 버퍼에 대한 자세한 설명이 있습니다. 예시 var actualBufferObject = Buffer.from('[John Smith]', 'utf8') console.log("The actual buffer object="); console.log(JSON.stringify(actualBufferObject)) console.log("Get back the original object
외부인 함수 호출에는 return 키워드를 사용합니다. 다음은 코드입니다 - 예시 var substractMethod = function () { var firstValue =1000, thirdValue= 200; var divideMethod = function (){ var secondValue =500; console.log("The result of divi
다음이 우리의 문자열이라고 가정해 봅시다 - my name is JOHN SMITH 모든 대문자를 문자열/의 시작 부분으로 이동하려면 정규식 /[A-Z]/와 함께 sort()를 사용합니다. 예시 var moveAllCapitalLettersAtTheBeginning = [...' my name is JOHN SMITH '] .sort((value1, value2) => /[A-Z]/.test(value1) ? /[A-Z]/.test(value2) ? 0 : -1 : 0).join(' '); con
이를 확인하려면 getter 개념, 즉 get 속성을 사용하십시오. 다음은 코드입니다 - 예시 class Student{ constructor(studentMarks1, studentMarks2){ this.studentMarks1 = studentMarks1 this.studentMarks2 = studentMarks2 var alteredValue = this; &nbs
다음은 코드입니다 - 예시 function multiplication(firstValue, secondValue, callback) { var res = firstValue * secondValue; var err = isNaN(res) ? 'Something is wrong in input parameter' : undefined; callback(res, err); } multiplication(10, 50, functio
버튼 클릭 시 뒷 페이지로 이동하려면 - 개념을 사용하십시오. window.history.go(-1) 예시 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> &