How to quickly and conveniently disable all console.log statements in my code?Mar 23, 2023·1 min read
Array QuestionQ1.Span Of Array here we need to find the diffrenct between max and min we have 2 ways 1)sort the array 2)with the help of for loop let data = [12,23,232,14]; data.sort(function (a,b) {return a-b}) let diff = data[data.length-1] - data[0]; console....May 10, 2024·2 min read