Skip to content

Instantly share code, notes, and snippets.

@gondar00
Created March 31, 2020 19:41
Show Gist options
  • Save gondar00/5c5b4c95ad2acf3479f239961e5687f0 to your computer and use it in GitHub Desktop.
Save gondar00/5c5b4c95ad2acf3479f239961e5687f0 to your computer and use it in GitHub Desktop.
difference between two strings in javscript
function findDiff(str1, str2){
let diff= "";
str2.split('').forEach(function(val, i){
if (val != str1.charAt(i))
diff += val ;
});
return diff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment