I have a function which returns an html element like addSpan(times),is there a way to return this element as many times as specified in the parameter items ?
vanilla js is welcomed!
function addSpan(times){
 const span = `<span>This is a span</span>`
 
 return span
}
$("body").append( addSpan(2) ) //is supposed to add 2 spans<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
</head>
<body>
</body>
</html> 
     
     
     
    