Data-Bind : "text"
<p>First name: <strong data-bind="text: firstName"></strong></p>
<p>Last name: <strong data-bind="text: lastName"></strong></p>
function AppViewModel() {
this.firstName = "Bert";
this.lastName = "Bertington";
//Activates knockout js
ko.applyBindings(new AppViewModel());