我需要编写 JS 函数,如果字符串包含- depreciated
在其最后一个否则返回 true,否则返回 false。
例如:
var somestring = "string value - depreciated";
在上面的例子中,函数应该返回 true。
function isDepreciated(var S)
{
//Need to check for substring in last
//return true or false
}
一种可能的解决方案是使用search
函数,但这意味着如果- depreciated
出现在字符串中,那么它也将返回 true。我真的需要找到天气子字符串是否在最后。
请帮忙。