scope ํจ์์ ์ธ๋ฌธ์ผ๋ก ์ ์ํ ํจ์๋ ํจ์ ํธ์ด์คํ
์ด ์ผ์ด๋๋ค.ํจ์ ํํ์์ ๋ถ๊ฐ๋ฅ ํจ์ ํธ์ด์คํ
: ํจ์ ์ ์ธ ์ด์ ์ ํธ์ถ์ด ๋๋ค. describe('scope ๋ํด์ ํ์ตํฉ๋๋ค.', function () { // scope๋ ๋ณ์์ ๊ฐ(๋ณ์์ ๋ด๊ธด ๊ฐ)์ ์ฐพ์ ๋ ํ์ธํ๋ ๊ณณ์ ๋งํฉ๋๋ค. ๋ฐ๋์ ๊ธฐ์ตํ์๊ธฐ ๋ฐ๋๋๋ค. it('ํจ์ ์ ์ธ์(declaration)๊ณผ ํจ์ ํํ์(expression)์ ์ฐจ์ด๋ฅผ ํ์ธํฉ๋๋ค.', function () { let funcExpressed = 'to be a function'; expect(typeof funcDeclared).to.equal("function"); expect(typeof funcExpressed).to.equal("string"); functio..