Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 401 Bytes

V8.md

File metadata and controls

7 lines (4 loc) · 401 Bytes

V8

V8 is Google’s open source, high performance JavaScript engine. It is written in C++ and is used in Google Chrome and other projects.

V8 compiles and executes JavaScript source code, handles memory allocation for objects, and garbage collects objects it no longer needs.

Check out the Github repository for more information.