JavaScript

Explain WebAssembly integration

Hard
3
Added
Low-level binary format for near-native speed. Interops with JS through imports/exports.

Solution Code

JavaScript
WebAssembly.instantiateStreaming(fetch('module.wasm'));
Explanation
Compiled from C/C++/Rust. Can access limited Web APIs through JS glue.

Guided Hints

Memory management
Use cases