Skip to content

Instantly share code, notes, and snippets.

View ishansan38's full-sized avatar

Ishan Sharma ishansan38

  • Deepsync Technologies
  • Noida
View GitHub Profile
function countValueInArray(array, niddle) {
return array.filter(item => item == niddle).length;
}
var fileText = [];
function readTextFile(file) {
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function() {