LinkedIn Interview Frontend Role

there are not many frontend muscles to begin with.

Similar to other frontend muscles in the ground, just list variations:

1:

//For the given array of members:
var members = [
    {
        name: 'Bill Denbrough',
        id: 1
    },
    {
        name: 'Ben Hanscom',
        id: 2
    },
    {
        name: 'Mike Hanlon',
        id: 3
    },
    {
        name: 'Richie Tozier',
        id: 4
    },
    {
        name: 'Beverly Marsh',
        id: 5
    },
    {
        name: 'Eddie Kaspbrak',
        id: 6
    },
    {
        name: 'Stan Uris',
        id: 7
    }
];


/**
<div id="content"></div>

//insert links for each of the members into the content div
<a href="profile.jsp?id=[id]">[Member Name]</a>


<div id="content" >
    <a class="link" href="profile.jsp?id=1" >Bill Denbrough</a>
    ..
    ..
</div>
*/
Write a program to populate HTML. Follow up, what if there are 1000 records, how to improve performance (hinted by someone about event bubbling) How does your browser handle this process?

2.
Have you heard of AMD? How does the browser render your code (the original poster was confused)