2.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			2.0 KiB
		
	
	
	
	
	
	
	
id, title, challengeType, videoUrl, localeTitle
| id | title | challengeType | videoUrl | localeTitle | 
|---|---|---|---|---|
| 587d7dbb367417b2b2512bac | Remove Whitespace from Start and End | 1 | Удаление пробелов от начала и конца | 
Description
Instructions
Здесь будет работать метод
.trim() , но вам придется выполнить эту задачу, используя регулярные выражения. Tests
tests:
  - text: '<code>result</code> должен равняться <code>"Hello, World!"</code>'
    testString: 'assert(result == "Hello, World!", "<code>result</code> should equal to <code>"Hello, World!"</code>");'
  - text: Вы не должны использовать метод <code>.trim()</code> .
    testString: 'assert(!code.match(/\.trim\(.*?\)/), "You should not use the <code>.trim()</code> method.");'
  - text: <code>result</code> переменная не должна быть установлена равной строке.
    testString: 'assert(!code.match(/result\s*=\s*".*?"/), "The <code>result</code> variable should not be set equal to a string.");'
Challenge Seed
let hello = "   Hello, World!  ";
let wsRegex = /change/; // Change this line
let result = hello; // Change this line
Solution
// solution required