หน้าแรก
หน้าแรก
สมมติว่าต่อไปนี้คืออาร์เรย์ของเรา var theValuesIn3DArray = [75, [18, 89], [56, [97], [99]]]; ใช้แนวคิดของ flat() ภายใน Math.max() เพื่อหาจำนวนที่มากที่สุด ตัวอย่าง var theValuesIn3DArray = [75, [18, 89], [56, [97], [99]]]; Array.prototype.findTheLargestNumberIn3dArray = function (){ re
สมมติว่าต่อไปนี้คืออาร์เรย์ของเราที่มีค่าที่ไม่ใช่ค่าว่าง ค่าว่าง และค่าที่ไม่ได้กำหนด - var firstName=["John",null,"Mike","David","Bob",undefined]; คุณสามารถตรวจสอบกรณีที่ไม่ได้กำหนดหรือเป็นโมฆะได้โดยใช้รหัสต่อไปนี้ - ตัวอย่าง var firstName=["John"
สำหรับสิ่งนี้ ให้แยกเวลาของวันที่ระบุและเรียกใช้ฟังก์ชันโดยใช้ setTimeout() รหัสมีดังต่อไปนี้ - ตัวอย่าง <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0&qu
ไวยากรณ์ที่ถูกต้องในการตั้งค่า innerHTML มีดังนี้ - document.getElementById(“yourIdName”).innerHTML=”yourValue”; ตอนนี้เรามาดูวิธีตั้งค่า innerHTML − ตัวอย่าง <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta
สมมติว่าต่อไปนี้คืออาร์เรย์ของเราที่มีค่าไม่ว่างและมีค่าว่าง - studentDetails[2] = "Smith"; studentDetails[3] = ""; studentDetails[4] = "UK"; function arrayHasEmptyStrings(studentDetails) { for (var index = 0; index < studentDetails.length; index++) { ใ
สมมุติว่าเราต้องเขียนฟังก์ชัน JavaScript ที่รับอาร์เรย์และตัวเลข n และหมุนอาร์เรย์ด้วยองค์ประกอบ n ตัวอย่างเช่น หากอาร์เรย์อินพุตเป็น − const arr = [12, 6, 43, 5, 7, 2, 5]; และหมายเลข n คือ 3 จากนั้นผลลัพธ์ควรเป็น − const output = [5, 7, 2, 5, 12, 6, 43]; มาเขียนโค้ดสำหรับฟังก์ชันนี้กัน − ตัวอย่
เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่ใช้ตัวเลขสามตัว A, B และ N และค้นหาจำนวนตัวเลข N ทั้งหมดที่มีผลรวมของหลักในตำแหน่งคู่และตำแหน่งคี่ที่หารด้วย A และ B ตามลำดับ ตัวอย่าง มาเขียนโค้ดสำหรับฟังก์ชันนี้กัน − { เริ่มต้น =Math.pow (10, (n-1)); const end =Math.pow(10, n)-1; const res =[]; ในขณะที่
เราจำเป็นต้องเขียนฟังก์ชัน JavaScript เพื่อค้นหาจำนวนครั้งที่ตัวอักษรเฉพาะปรากฏในประโยค ตัวอย่าง มาเขียนโค้ดสำหรับฟังก์ชันนี้กัน − const string = 'This is just an example string for the program'; const countAppearances = (str, char) => { let count = 0; for(let i
กล่าวได้ว่าจำนวนสองจำนวนเป็นจำนวนเฉพาะร่วมหากไม่มีตัวประกอบเฉพาะร่วมกันในจำนวนนั้น (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 เราจำเป็นต้องเขียนฟังก์ชันที่ใช้ตัวเ
สมมติว่าเรามีอาร์เรย์ของวัตถุเช่นนี้ − data = [ {"Age":26,"Level":8}, {"Age":37,"Level":9}, {"Age":32,"Level":5}, {"Age":31,"Level":11}, {"Age":n
ได้ คลาสพาเรนต์และคลาสย่อยสามารถมีเมธอดที่มีชื่อเดียวกันได้ ตัวอย่าง class Parent { constructor(parentValue) { this.parentValue = parentValue; } //Parent class method name which is same as Child Class method name. showValues()
สำหรับสิ่งนี้ ให้ใช้ jQuery() พร้อมคุณสมบัติ id ต่อไปนี้เป็นรหัส - ตัวอย่าง <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document
สมมติว่าต่อไปนี้คืออาร์เรย์ของเรา &mius; var subjectNameAlongWithMarks = [ ["JavaScript", 78], ["Java", 56], ["JavaScript", 58], ["MySQL", 77], ["MongoDB", 75], ["Java
ในการกำจัดค่า Null ที่แทรกลงในตาราง คุณต้องตรวจสอบเงื่อนไขในขณะที่ป้อนค่า เงื่อนไขในการตรวจสอบ NULL ต้องเป็นดังนี้ − while( !( yourVariableName1==null || yourVariableName2==null || yourVariableName3==null…...N){ // yourStatement1 . . N } ต
สำหรับสิ่งนี้ ให้ใช้แนวคิดของ toString(utf8) ต่อไปนี้เป็นรหัส - ในโค้ดด้านล่างนี้ มีคำอธิบายโดยละเอียดเกี่ยวกับบัฟเฟอร์ ตัวอย่าง var actualBufferObject = Buffer.from('[John Smith]', 'utf8') console.log("The actual buffer object="); console.log(JSON.stringify(actualBufferOb
ใช้คีย์เวิร์ด return สำหรับการเรียกใช้ฟังก์ชันภายนอก ต่อไปนี้เป็นรหัส - ตัวอย่าง var substractMethod = function () { var firstValue =1000, thirdValue= 200; var divideMethod = function (){ var secondValue =500; console.log("The
สมมติว่ากำลังติดตามเป็นสตริงของเรา - my name is JOHN SMITH ใช้ sort() ร่วมกับนิพจน์ทั่วไป /[A-Z]/ เพื่อย้ายตัวพิมพ์ใหญ่ทั้งหมดไปที่จุดเริ่มต้นของสตริง/ ตัวอย่าง var moveAllCapitalLettersAtTheBeginning = [...' my name is JOHN SMITH '] .sort((value1, value2) => /[A-Z]/.test(value1) ? /[A-Z
ในการตรวจสอบนี้ ให้ใช้แนวคิดของ getter เช่น get property ต่อไปนี้เป็นรหัส - ตัวอย่าง class Student{ constructor(studentMarks1, studentMarks2){ this.studentMarks1 = studentMarks1 this.studentMarks2 = studentMarks2 var altered
ต่อไปนี้เป็นรหัส - ตัวอย่าง 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
สำหรับการเข้าถึงหน้าหลังเมื่อคลิกปุ่ม ใช้แนวคิดของ − 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>