I want to convert a javascript array that is in data.js file to ko.observable array and bind it to list tag
HTML
<script type="text/html" id="profileListTemplate">
<li>
<strong data-bind="text: name"></strong>
</li>
</script>
<h1>Profile Viewer</h1>
<div class="tabbable tabs-left" id="profilesTabViewer">
<ul class="nav nav-tabs" id="profileTab" data-bind="template: { name: 'profileListTemplate'}">
</ul>
<div class="tab-content" id="profileContent">
</div>
</div>`
data.js
var data = [
{
'id': '1',
'firstName': 'Megan',
'lastName': 'Fox',
'picture': 'images/01.jpg',
'bio': 'Megan Denise Fox was born May 16, 1986 in Rockwood, Tennessee. ...
},
....
];