.map 함수를 이용하여 input 폼안의 내용들을 콤마로 구분지어 문자열로 나열 [예제] 12345678910111213141516171819<!DOCTYPE html><html><head><script src="http://code.jquery.com/jquery-latest.js"></script></head><body><p>문자열: </p><form> <input type="text" name="id" value="john123"/> ..