I have this javascript to add image on my html page,here:
<script>
var img = new Image();
let filename = 'IMG20191106172456.jpg'
img.src = "img/" + filename;
$("row first").append("<li><img src='" + "img/" + filename + "'></li>");
console.log(img.src);
</script>
Full html
But the problem is it doesn't render anything, here is the live site
First three images being rendered is from here. It is even bring change to my html.
My target is to render the first image again at last.