JavaScript dataView.getUint8() Method Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The dataView.getUint8() is an inbuilt function in dataView that is used to get an unsigned 8-bit integer at the specified location i.e, at byte offset from the start of the dataView. Syntax: dataView.getUint8(byteOffset) Parameters: It has the parameter byteOffset which is offset in a byte and it says from the start of the view where to read the data. Return value: It returns an unsigned 8-bit integer. Below are examples of the dataView.getUint8() Method. Example 1: javascript var buffer = new ArrayBuffer(20); var dataview1 = new DataView(buffer, 0, 10); dataview1.setUint8(1, 12); console.log(dataview1.getUint8(1)); Output: 12 Example 2: javascript // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view var dataview1 = new DataView(buffer, 0, 10); // put the data 56 at slot 1 dataview1.setUint8(1, 56); console.log(dataview1.getUint8(1)); Output: 56 Example 3: This function convert the float value of PI from 3.14 to 3. javascript // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view with slot from o to 10 var dataview1 = new DataView(buffer, 0, 10); // put the value of PI at slot 1 dataview1.setUint8(1, Math.PI); console.log(dataview1.getUint8(1)); Output: 3 Example 4: When there is no data to be stored, then it returns zero (0). javascript // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view var dataview1 = new DataView(buffer, 0, 10); // putting no data at slot 1 dataview1.setUint8(1); console.log(dataview1.getUint8(1)); Output: 0 We have a complete list of Javascript Date Objects, to check those please go through this JavaScript dataView Complete Reference article. Supported Browsers: Google Chrome 9 and aboveEdge 12 and aboveFirefox 15 and aboveInternet Explorer 10 and aboveOpera 12.1 and aboveSafari 5.1 and above We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript. Comment More infoAdvertise with us Next Article Interview Preparation For Software Developers S ShivamKD Follow Improve Article Tags : JavaScript Web Technologies javascript-dataView JavaScript-Methods Similar Reads Interview PreparationInterview Preparation For Software DevelopersMust Coding Questions - Company-wise Must Do Coding Questions - Topic-wiseCompany-wise Practice ProblemsCompany PreparationCompetitive ProgrammingSoftware Design-PatternsCompany-wise Interview ExperienceExperienced - Interview ExperiencesInternship - Interview ExperiencesPractice @GeeksforgeeksProblem of the DayTopic-wise PracticeDifficulty Level - SchoolDifficulty Level - BasicDifficulty Level - EasyDifficulty Level - MediumDifficulty Level - HardLeaderboard !!Explore More...Data StructuresArraysLinked ListStackQueueBinary TreeBinary Search TreeHeapHashingGraphAdvance Data StructuresMatrixStringAll Data StructuresAlgorithmsAnalysis of AlgorithmsSearching AlgorithmsSorting AlgorithmsPattern SearchingGeometric AlgorithmsMathematical AlgorithmsRandomized AlgorithmsGreedy AlgorithmsDynamic ProgrammingDivide & ConquerBacktrackingBranch & BoundAll AlgorithmsProgramming LanguagesCC++JavaPythonC#Go LangSQLPHPScalaPerlKotlinWeb TechnologiesHTMLCSSJavaScriptBootstrapTailwind CSSAngularJSReactJSjQueryNodeJSPHPWeb DesignWeb BrowserFile FormatsComputer Science SubjectsOperating SystemsDBMSComputer NetworkComputer Organization & ArchitectureTOCCompiler DesignDigital Elec. & Logic DesignSoftware EngineeringEngineering MathematicsData Science & MLComplete Data Science CourseData Science TutorialMachine Learning TutorialDeep Learning TutorialNLP TutorialMachine Learning ProjectsData Analysis TutorialTutorial LibraryPython TutorialDjango TutorialPandas TutorialKivy TutorialTkinter TutorialOpenCV TutorialSelenium TutorialGATE CSGATE CS NotesGate CornerPrevious Year GATE PapersLast Minute Notes (LMNs)Important Topic For GATE CSGATE CoursePrevious Year Paper: CS exams Like