DODaniel Osunkwoindaxxy.hashnode.dev·Aug 10, 2023 · 12 min readJavascript ExerciseNo1. Write a function That multipliesByTwo that takes a number as a parameter and returns the result of multiplying it by 2. Use a callback function to print the result. function multiplyByTwo(number, callback) { var result = number * 2; callback...00
DODaniel Osunkwoindaxxy.hashnode.dev·Aug 9, 2023 · 7 min readAgile MethodologyState the Agile manifesto: Agile methodology is built upon a set of core values and principles, collectively known as the Agile Manifesto. This manifesto serves as a guiding light for development teams looking to embrace agility in their work process...00
DODaniel Osunkwoindaxxy.hashnode.dev·Jun 27, 2023 · 5 min readExercise on JS Array// No 1 const Input = [1, 2, 4, 0]; const input2 = ( 'w3resource'); console.log (Array.isArray (Input)); console.log (Array.isArray(input2)); //No 2 function cloneArray(array) { return array.slice(0); } const orignalArray = [1, 2, [4, 0]]; ...00
DODaniel Osunkwoindaxxy.hashnode.dev·Jun 27, 2023 · 4 min readExercise on Javascript object.// No 1 var marketer = { name: "Jacob Drew", sclass: "VII", rollno: 10 }; console.log (marketer); // NO 2 var marketer = { name: "Jacob Drew", sclass: "VII", rollno: 10 }; // Delete the rollno property delete marketer.rollno...00