Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 567 Bytes

V8.md

File metadata and controls

12 lines (8 loc) · 567 Bytes
title excerpt
V8
Google’s open source JavaScript engine. It’s what Chrome is running, but it’s also used for other projects like Node.js and MongoDB

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.