Having trouble understanding Int32Array , Int8Array etc;

This page summarizes the projects mentioned and recommended in the original post on /r/learnjavascript

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • lamejs

    mp3 encoder in javascript

  • const channels = [ new Float32Array(441), new Float32Array(441), ]; for (let i = 0, j = 0, n = 1; i < int16.length; i++) { const int = int16[i]; // If the high bit is on, then it is a negative number, and actually counts backwards. const float = int >= 0x8000 ? -(0x10000 - int) / 0x8000 : int / 0x7fff; // Deinterleave channels[(n = ++n % 2)][!n ? j++ : j - 1] = float; } // https://github.com/zhuker/lamejs/commit/e18447fefc4b581e33a89bd6a51a4fbf1b3e1660 const left = channels.shift(); const right = channels.shift(); let leftChannel, rightChannel; if (this.mimeType.includes('mp3')) { const sampleBlockSize = 441; leftChannel = new Int32Array(left.length); rightChannel = new Int32Array(right.length); for (let i = 0; i < left.length; i++) { leftChannel[i] = left[i] < 0 ? left[i] * 32768 : left[i] * 32767; rightChannel[i] = right[i] < 0 ? right[i] * 32768 : right[i] * 32767; } }

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Ask HN: Startups – Are you on a monorepo or multi-repo set up?

    1 project | news.ycombinator.com | 14 May 2024
  • Firefox to collect anonymized and categorized search data

    1 project | news.ycombinator.com | 14 May 2024
  • The Browser Exploitation Framework Project

    1 project | news.ycombinator.com | 14 May 2024
  • The Notifier Pattern for Applications That Use Postgres

    6 projects | news.ycombinator.com | 14 May 2024
  • How to create heatmaps in JavaScript: The Heat.js library

    1 project | dev.to | 14 May 2024