closure.js 271 B

12345678910111213141516
  1. function html_tag(tag){
  2. function wrap_text(msg){
  3. console.log('<' + tag +'>' + msg + '</' + tag + '>')
  4. }
  5. return wrap_text
  6. }
  7. print_h1 = html_tag('h1')
  8. print_h1('Test Headline!')
  9. print_h1('Another Headline!')
  10. print_p = html_tag('p')
  11. print_p('Test Paragraph!')