Hello friend I am Shyam and here I am describe the how to make table of 11 in JS using for loop.
Friend this article for this questions many time asked in question hub,
So I will describe this problem here because I don't know why developers ask questions on stack overflow and question hub write the table of 11 using JS,
So friends I am described here, you can see how to to create table of 11 in JS so friends you can just copy and paste this code and you can see the table of 11 in JS using for loop.. 

<script>

var text = "";
var i=11;
for (i =1; i <=10; i++) {
  console.log( i*11+"<br>");
}

</script>

Output -