diff --git a/Userland/Libraries/LibJS/Runtime/TypedArray.cpp b/Userland/Libraries/LibJS/Runtime/TypedArray.cpp index 1375dfc099..13ba159848 100644 --- a/Userland/Libraries/LibJS/Runtime/TypedArray.cpp +++ b/Userland/Libraries/LibJS/Runtime/TypedArray.cpp @@ -112,7 +112,7 @@ void TypedArrayBase::visit_edges(Visitor& visitor) auto& vm = this->vm(); \ NativeFunction::initialize(global_object); \ define_property(vm.names.prototype, global_object.snake_name##_prototype(), 0); \ - define_property(vm.names.length, Value(1), Attribute::Configurable); \ + define_property(vm.names.length, Value(3), Attribute::Configurable); \ define_property(vm.names.BYTES_PER_ELEMENT, Value((i32)sizeof(Type)), 0); \ } \ Value ConstructorName::call() \