In viewmodel object, below is the property:
public IList CollegeInformationlist { get; set; }
In VIEW, javas
After use codevar json = @Html.Raw(Json.Encode(@Model.CollegeInformationlist));
var json = @Html.Raw(Json.Encode(@Model.CollegeInformationlist));
You need use JSON.parse(JSON.stringify(json));
JSON.parse(JSON.stringify(json))