##Making the data editable
You're not limited to displaying static data. Let's use the value
binding, along with some regular HTML <input>
controls, to make the data editable.
Add the following markup to the bottom of your view (leaving the existing markup in place above it):
<p>First name: <input data-bind="value: firstName" /></p>
<p>Last name: <input data-bind="value: lastName" /></p>
Now run the application. What happens when you edit the text in one of the text boxes?