function positionOf(str1, str2) {
var pos = str1.indexOf(str2);
if (pos === -1) {
pos = str2.indexOf(str1);
if (pos === -1) {
return null;
}
pos = -pos;
}
return pos;
}
var strMsg1 = "Маша косит траву, а Дима пьет пиво";
var strMsg2 = "Дима пьет пиво";
alert(positionOf(strMsg1, strMsg2)); // 20
alert(positionOf(strMsg2, strMsg1)); // -20
alert(positionOf("Test", strMsg1)); // null