Created
March 31, 2020 19:41
-
-
Save gondar00/5c5b4c95ad2acf3479f239961e5687f0 to your computer and use it in GitHub Desktop.
difference between two strings in javscript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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