[Solved] how to creat a javascript function that combine input values from user input and out put them in a phrase? [closed]


First of all, your question is unclear. What have you tried? What are you trying to achieve?
Here are a simple example is to get you started. Just get the value of each field, and combine the value into a string.

function combineText() {
  var position = document.getElementById('position').value;
  var startDate = document.getElementById('startDate').value;
  var endDate = document.getElementById('endDate').value;

  var text = "started working as a "+position+" from "+startDate+" to "+endDate+".";

  document.getElementById('output').innerHTML = text;
}

Working jsfiddle example with event listener and form.

2

solved how to creat a javascript function that combine input values from user input and out put them in a phrase? [closed]