<!DOCTYPE html> 
<title>String.prototype.trim polyfill</title>
<script>
  String.prototype.trim=''.trim||function(){return this.replace(/^\s+|\s+$/g,'')}

  // logs 'my awesome string'
  console.log('        my awesome string       '.trim());
</script>