how to split array as per fixed length, and ionic two dates differences in min,seconds,hours


this.forsasi -->array
var perChunk = 5 // items per chunk
var inputArray = this.forsasi;
this.result = inputArray.reduce((resultArray, item, index) => {
const chunkIndex = Math.floor(index/perChunk);
if(!resultArray[chunkIndex]) {
resultArray[chunkIndex] = [] // start a new chunk
}
resultArray[chunkIndex].push(item);
return resultArray
}, [])
console.log(this.result);





this.d1 = JSON.parse(localStorage.getItem("starttime"));
var d2 = new Date(this.d1);
console.log(d2)
var date1 = new Date();
var Str1 =
("00" + (date1.getMonth() + 1)).slice(-2)
+ "/" + ("00" + date1.getDate()).slice(-2)
+ "/" + date1.getFullYear() + " "
+ ("00" + date1.getHours()).slice(-2) + ":"
+ ("00" + date1.getMinutes()).slice(-2)
+ ":" + ("00" + date1.getSeconds()).slice(-2);
console.log(Str1);
var d3 = new Date(Str1);
console.log(d3.getTime(), "d3.getTime()");
var diff1 = (d3.getTime() - d2.getTime()) / 1000; //seconds
console.log(diff1);
// diff1 /= 60; //mintues
//by 1000×60×60 convert to hour




Comments

Popular posts from this blog

Your app currently targets API level 27 and must target at least API level 28 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 28

ionic project creation

change root user in ubuntu