Concatenação javascript

Estou errando nesta linha alguem poderia me dizer onde esta o erro?
html += ‘

’;
html += ‘<a onclick=excluirCD("’+rows[i].id_contato+’")>excluir’;
html += ‘’
                var html = '';
				var id = '';
                for (var i = 0; i < rows.length; i++) {
                    html += '<tr>';
                    html += '<td>';
                    html += rows[i].nomecd;
                    html += '</td>';
                    html += '<td>';
                    html += rows[i].preco;
                    html += '</td>';  
					html += '<td>';
                    html += rows[i].data;
                    html += '</td>'; 
					html += '<td>';
                    html += '<a onclick=excluirCD("'+rows[i].id_contato+'")>excluir</a>';
                    html += '</td>'; 
                    html += '</tr>';
					
                }
				
                $("#tblCd tr").after(html);
            });

;

Olá Marcos. Realmente não entendi seu erro, poderia mostrar o stack/console?