Add a value to the option
问题 I am trying to create a select element using EJS (embedded javascript) in Geddy framework. What I want to do is have something like (just an example): <select> <option value="int"> Integer </option> <option value="float"> Single precision decimal point </option> </select> I don't find any examples... I know that for creating a select like <select> <option value="X"> X </option> <option value="Y"> Y </option> </select> I have to write <%- contentTag('select', ['X', 'Y']} %> But how to obtain