javascript compare two strings

javascript compare two strings

JavaScript string equality check using equals() method

//THIS METHOD IS USED TO CHECK THE EXISTING TEXT IS CHANGED OR NOT.
var isReadyForUpdateCall = function (oldI1, newI1, oldJ1, newJ1) {
    var status = true;
    if (oldI1.equals(newI1) || oldJ1.equals(newJ1)) {
        status = false;
    }
    return status;

}

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

javascript compare two strings javascript compare two strings Reviewed by Anil Singh on 10:44 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^