"if_v2" command does not support TextPresent comparison

A demo in this page storeText - Selenium IDE Commands Tutorial

The commands below are outdated
if “${myvar}” == “Catch Javascript alerts”

and this “if_v2” command is not accepted
if_v2 “${myvar}” == “Catch Javascript alerts”

In the new V2 versions of these commands you need to remove the "" around the variables.
It is working below,
if_v2 ${myvar} == “Catch Javascript alerts”

solved
if_v2 ${myvar}.includes(“Catch”) == true

Thanks for pointing out the outdated documentation => We updated the page!