I am developing windows app in windows phone Silverlight 8.1 solution.
when i am using the try catch i get error saying funtion expected.
Here is my piece of code:
try
{
alert("blogCategoryId is : " + blogCategoryId.length());
}
catch (err) {
alert("Error is :" + err.message);
}
And is there alternative of .length() funtion.