console.log(('#list'))
(() =>{
let item = $(’#item’)
$('#prepend').click(()=>{
let text =item.val()
$('#list').prepend($('<li>').html('<b>$(text)</b>)')
})
})
in this code, my last line (the one having html) is not running. Pls help me debug the problem in this case.