eval()

차노·2023년 8월 18일
0

JS

목록 보기
63/96

Definition

The eval() function in JavaScript is a built-in-global function that allows to execute JavaScript code contained in a string.

자바스크립트에서 eval() 함수는 스트링에 포함된 자바스크립트 코드를 실행시켜주는 전역내장 함수이다.

It takes a string as an argument and interprets and executes the code within that string.

인자로서 스트링을 받고, 해석하며, 스트링 내의 코드를 실행시킨다.

Syntax

  • string: A string containing JavaScript code to be executed.

    실행할 자바스크립트 코드를 내장하는 스트링

Example

0개의 댓글