Hello I found out work around solution by simply changing the message(Input value).
It's not a proper solution but in my case it is cool alternative.
Solution for disable HTML or any kind of scripting.
-- Simply replace some basic special symbol to white space which is used while writing a script.
Example: < > ( ) ' " / \ *; = { } ` (back tick) % + ^! -
const str = `Click <a href='www.google.com'> here</a> to reset your password`;
console.log(str.replace(/[\\#+$~`":;!=*<>{}]/g, ""));
In my case user not using some symbols for describing problem(Message).