Javascript Object Get First Key Name

Related Post:

Javascript Object Get First Key Name - Use Object.keys () to Get the First Key Name of an Object in JavaScript Another way to get the first key of the object in JavaScript is by using the Object.keys () method. This method works similarly to the entries () method, and it also returns an array. Object keys is a method that returns an array of a given object s own enumerable property names in the same order as we get with a normal loop Copy text getFirstKeyName obj const keys keys obj return keys 0 loop iterates over the properties of an object To get the first key you can break the loop after the first iteration Copy text

Javascript Object Get First Key Name

Javascript Object Get First Key Name

Javascript Object Get First Key Name

Approach 1: First take the JavaScript Object in a variable. Use object.keys (objectName) method to get access to all the keys of object. Now, we can use indexing like Object.keys (objectName) [0] to get the key of first element of object. Example: This example illustrate the above approach. html js Object.keys(obj) Parameters obj An object. Return value An array of strings representing the given object's own enumerable string-keyed property keys. Description Object.keys () returns an array whose elements are strings corresponding to the enumerable string-keyed property names found directly upon object.</p><h3>How to get the first key name of a JavaScript object Basedash</h3><p style="text-align: center;margin-bottom: 0px;"><img class="showimg" alt="how-to-filter-an-object-by-key-in-javascript" title="How To Filter An Object By Key In JavaScript" src="https://s3.stackabuse.com/media/articles/how-to-filter-an-object-by-key-in-javascript-1.png" onclick="showImagePopup(this.src)" /></p><p style="text-align: center;">How To Filter An Object By Key In JavaScript</p><p style="text-align: justify;"><i>Javascript Object Get First Key Name</i>Javascript's Object.keys () returns an array of enumerable property names of the object. The method iterates the keys in the same order as that of a standard loop. Example:- Get the first key-value pair of the object personFirstName: 'George', personLastName: 'Smith', dateOfBirth: 'Nov 14 1984' , city : 'Santiago' Code:- Copy to clipboard 23 Answers Sorted by 1899 var obj first someVal obj Object keys obj 0 returns someVal Object values obj 0 returns someVal Using this you can access also other properties by indexes Be aware tho </p><p style="text-align: justify;">To get an object's first key/property name from its own (i.e. non-inherited) enumerable properties, you can do either of the following: // ES5+ Object.keys(obj)[0]; // ES8+ const [key] = Object.entries(obj)[0]; You should note that, prior to ES2020/ES11, the order of the keys is not guaranteed when using either of these methods. How To Check If A Property Exists In A JavaScript Object JavaScript Object Get Value By Key</p><h3>Object keys JavaScript MDN MDN Web Docs</h3><p style="text-align: center;margin-bottom: 0px;"><img class="showimg" alt="how-to-activate-the-mountainator-cannon-in-genshin-impact-gamepur" title="How To Activate The Mountainator Cannon In Genshin Impact Gamepur" src="https://www.gamepur.com/wp-content/uploads/wp-content/uploads/2022/04/12235629/gunpowder-storehouse-1-850x478.jpg" onclick="showImagePopup(this.src)" /></p><p style="text-align: center;">How To Activate The Mountainator Cannon In Genshin Impact Gamepur</p><p style="text-align: justify;">Use the Object.values () method to get an array of the object's values. Access the element at index 0, e.g. Object.values (obj) [0]. index.js const obj = one: '1', two: '2', three: '3'; const firstValue = Object.values(obj)[0]; console.log(firstValue); // 👉️ '1' The Object.values () method returns an array containing all of the object's values. Ajax Javascript Get Json Example</p><p style="text-align: justify;">Use the Object.values () method to get an array of the object's values. Access the element at index 0, e.g. Object.values (obj) [0]. index.js const obj = one: '1', two: '2', three: '3'; const firstValue = Object.values(obj)[0]; console.log(firstValue); // 👉️ '1' The Object.values () method returns an array containing all of the object's values. Use Deno Deploy To Serve Non Traditional Artifacts Full Stack Chronicles Stream Processing With Spark Structured Streaming Kafka And Snowflake Using Python Full Stack </p><div class="img-gall"><div class="img-st"><p style="margin-bottom: 1px;"><img alt="javascript-get-nested-object-property-from-path-string-30-seconds-of-code" title="JavaScript Get Nested Object Property From Path String 30 Seconds Of Code" src="https://www.30secondsofcode.org/assets/cover/violin.jpg" onclick="showImagePopup(this.src)" /></p><p class="title-img">JavaScript Get Nested Object Property From Path String 30 Seconds Of Code</p></div><div class="img-st"><p style="margin-bottom: 1px;"><img alt="javascript-array-object-how-to-use-it-methods-edupala" title="Javascript Array Object How To Use It Methods Edupala" src="https://edupala.com/wp-content/uploads/2021/11/javascript-array-object-example.png" onclick="showImagePopup(this.src)" /></p><p class="title-img">Javascript Array Object How To Use It Methods Edupala</p></div><div class="img-st"><p style="margin-bottom: 1px;"><img alt="dataops-with-container-images-and-multi-stage-builds-full-stack-chronicles" title="DataOps With Container Images And Multi Stage Builds Full Stack Chronicles" src="https://fullstackchronicles.io/img/blog/dataops-featured-image.png" onclick="showImagePopup(this.src)" /></p><p class="title-img">DataOps With Container Images And Multi Stage Builds Full Stack Chronicles</p></div><div class="img-st"><p style="margin-bottom: 1px;"><img alt="array-inside-object-javascript" title="Array Inside Object JavaScript" src="https://tutorial.eyehunts.com/wp-content/uploads/2022/03/Array-inside-object-JavaScript.jpg" onclick="showImagePopup(this.src)" /></p><p class="title-img">Array Inside Object JavaScript</p></div><div class="img-st"><p style="margin-bottom: 1px;"><img alt="how-to-check-if-key-exists-in-javascript-object-sabe-io" title="How To Check If Key Exists In JavaScript Object Sabe io" src="https://sabe.io/blog/javascript-check-key-exists-object/hero.png" onclick="showImagePopup(this.src)" /></p><p class="title-img">How To Check If Key Exists In JavaScript Object Sabe io</p></div><div class="img-st"><p style="margin-bottom: 1px;"><img alt="aws-iam-vs-google-iam-full-stack-chronicles" title="AWS IAM Vs Google IAM Full Stack Chronicles" src="https://fullstackchronicles.io/img/blog/aws-iam-vs-google-iam.png" onclick="showImagePopup(this.src)" /></p><p class="title-img">AWS IAM Vs Google IAM Full Stack Chronicles</p></div><div class="img-st"><p style="margin-bottom: 1px;"><img alt="javascript-object-properties" title="JavaScript Object Properties" src="https://flaviocopes.com/images/javascript-object-properties/new-object-immutability.png" onclick="showImagePopup(this.src)" /></p><p class="title-img">JavaScript Object Properties</p></div><div class="img-st"><p style="margin-bottom: 1px;"><img alt="ajax-javascript-get-json-example" title="Ajax Javascript Get Json Example" src="https://www.encodedna.com/jquery/fetch-json-data-from-file-display-in-table-jquery.png" onclick="showImagePopup(this.src)" /></p><p class="title-img">Ajax Javascript Get Json Example</p></div><div class="img-st"><p style="margin-bottom: 1px;"><img alt="javascript-object-get-value-by-key-with-examples" title="JavaScript Object Get Value By Key with Examples " src="https://www.tutorialstonight.com/assets/js/javascript-object-get-value-by-key.webp" onclick="showImagePopup(this.src)" /></p><p class="title-img">JavaScript Object Get Value By Key with Examples </p></div><div class="img-st"><p style="margin-bottom: 1px;"><img alt="how-to-get-first-key-in-dictionary-python-get-the-first-key-in-python-dictionary-python" title="How To Get First Key In Dictionary Python Get The First Key In Python Dictionary Python " src="https://python-programs.com/wp-content/uploads/2021/05/How-to-get-first-key-in-Dictionary-–-Python.png" onclick="showImagePopup(this.src)" /></p><p class="title-img">How To Get First Key In Dictionary Python Get The First Key In Python Dictionary Python </p></div></div></div></div></article></main> </div> <div class="widget-area sidebar is-right-sidebar" id="right-sidebar"> <div class="inside-right-sidebar"><aside id="recent-posts-2" class="widget wid-right inner-padding widget_recent_entries"><h3 class="widget-title h3sidebar">Top Post</h3><div class="tptn_posts tptn_posts_widget tptn_posts_widget2"><ul class="list-inline ml-3"><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/bible-bingo-cards-printable.html">Bible Bingo Cards Printable </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/printable-list-of-mothers-in-the-bible.html">Printable List Of Mothers In The Bible </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/free-printable-bible-fishermen-following-jesus.html">Free Printable Bible Fishermen Following Jesus </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/bible-printables-spanish.html">Bible Printables Spanish </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/bible-lesson-preschool-header.html">Bible Lesson Preschool Header </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/seventh-beatitude-bible-class-lesson-for-preschoolers.html">Seventh Beatitude Bible Class Lesson For Preschoolers </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/sowing-and-reaping-bible-lesson.html">Sowing And Reaping Bible Lesson </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/bible-lesson-daniel-chapter-1.html">Bible Lesson Daniel Chapter 1 </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/printable-bible-mothers-day-coloring-pages.html">Printable Bible Mothers Day Coloring Pages </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/printable-bible-word-study.html">Printable Bible Word Study </a></div></li></ul></div></aside><aside id="recent-posts-2" class="widget wid-right inner-padding widget_recent_entries"><h3 class="widget-title h3sidebar">Recent Post</h3><div class="tptn_posts tptn_posts_widget tptn_posts_widget2"><ul class="list-inline ml-3"><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/printable-books-of-the-bible-games-and-puzzles.html">Printable Books Of The Bible Games And Puzzles </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/bible-video-lessons-for-middle-school.html">Bible Video Lessons For Middle School </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/teen-lessons-on-women-of-the-bible.html">Teen Lessons On Women Of The Bible </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/the-bible-on-friendship-lesson.html">The Bible On Friendship Lesson </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/st-patricks-day-bible-lessons-kids-rainbow-craft.html">St Patricks Day Bible Lessons Kids Rainbow Craft </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/middle-school-bible-lessons-christmas.html">Middle School Bible Lessons Christmas </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/1st-grade-bible-lesson-on-keep-the-sabbath-day-holy.html">1st Grade Bible Lesson On Keep The Sabbath Day Holy </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/bible-character-puppet-printables.html">Bible Character Puppet Printables </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/bible-study-lessons-for-intellectually-disabled-adults.html">Bible Study Lessons For Intellectually Disabled Adults </a></div></li><li class="col-12 col-md-6 text-truncate"><div class="rela-disp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 18px; margin-top: 6px; padding-right: 5px;"><path fill="#777b83" d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg><a href="https://study.printablebiblelessons.com/les/children-s-bible-lesson-on-gossip.html">Children S Bible Lesson On Gossip </a></div></li></ul></div></aside> </div></div> </div> </div> <div class="site-footer"> <footer class="site-info" aria-label="Site" itemtype="https://schema.org/WPFooter" itemscope> <div class="inside-site-info grid-container"> <div class="copyright-bar"> Copyright © 2026 <a href='/'>Bible Study</a> </div> <ul class="foot-menu"><li><a href="https://study.printablebiblelessons.com/les/about-us.html">About Us</a></li><li><a href="https://study.printablebiblelessons.com/les/contact.html">Contact</a></li><li><a href="https://study.printablebiblelessons.com/les/dmca.html">Dmca</a></li><li><a href="https://study.printablebiblelessons.com/les/privacy-policy.html">Privacy Policy</a></li><li><a href="https://study.printablebiblelessons.com/les/terms-and-conditions.html">Terms And Conditions</a></li></ul> </div> </footer> </div> <script type="text/javascript">var sc_project=12892473; var sc_invisible=1; var sc_security="fc4deeef"; </script><script type="text/javascript" src="https://www.statcounter.com/counter/counter.js" async></script><noscript><div class="statcounter"><a title="Web Analytics" href="https://statcounter.com/" target="_blank"><img class="statcounter" src="https://c.statcounter.com/12892473/0/fc4deeef/1/" alt="Web Analytics" referrerPolicy="no-referrer-when-downgrade"></a></div></noscript><style>ul.foot-menu li { display: inline-table; padding: 0 5px; } .alertx { padding: 1rem 2.5rem; border: none; text-align: center; position: fixed; bottom: 0; width: 100%; z-index: 100; } .alert-info { background: #024C84; border-color: #024C84; color: #fff!important; }</style><script src="https://www.w3counter.com/tracker.js?id=128507"></script><style></style><div id="myModal" class="modal"> <div class="pop-style"> <span class="closes" onclick="closeImagePopup()"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 20px;float: right;margin: 10px 10px 0 0;">><path fill="#e60a0a" d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c-9.4 9.4-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0z"/></svg></span> <img class="modal-content" id="modalImage" onclick="zoomImage()" /> <a id="downloadButton" class="download-button" target="_blank" rel="nofollow" href="#" download><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width: 12px;"><path d="M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"/></svg> Download Image</a> </div></div><script src="https://study.printablebiblelessons.com/themes/login/assets/js/my-script.js"></script><script>function init(){var imgDefer=document.getElementsByTagName('img');for (var i=0; i<imgDefer.length; i++){if(imgDefer[i].getAttribute('data-src')){imgDefer[i].setAttribute('src',imgDefer[i].getAttribute('data-src'));}}}window.onload=init;</script> </body></html>