Why double quotes??

Why double quotes??

Question says it all :D 


  1.  $('a[href^=http://]').each(function( ) {
  2.      var href = $(this).attr('href');
  3.     href = href.replace('http://','');
  4.     $(this).after(' (' + href + ')');  // why double quotes 
  5.  });