Edit This Code:
<!DOCTYPE html>
<html>
<script src="../lib/w3data.js"></script>
<body>

<select id="id01">
<option w3-repeat="x in cars">{{x}}</option>
</select>

<script>
w3DisplayData("id01", {"cars" : ["Volvo", "Ford", "BMW", "Mercedes"]});
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy