¿Cómo renderizo un booleano a una variable de JavaScript en un archivo cshtml?
Actualmente esto muestra un error de sintaxis:
<script type="text/javascript" >
var myViewModel = {
isFollowing: @Model.IsFollowing // This is a C# bool
};
</script>