// Предположим, это мое поле Address, и как я вызываю его в файле js?
<div class="form-group">
@Html.LabelFor(model => model.Address, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.Address, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.Address, "", new { @class = "text-danger" })
</div>
</div>
// Код JS:
<script>
$('document').ready(function(){
//how i call address inside JS!
})
</script>