/*! elementor-pro - v3.23.0 - 05-08-2024 */ "use strict"; (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["countdown"],{ /***/ "../modules/countdown/assets/js/frontend/handlers/countdown.js": /*!*********************************************************************!*\ !*** ../modules/countdown/assets/js/frontend/handlers/countdown.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _default = exports["default"] = elementorModules.frontend.handlers.Base.extend({ cache: null, cacheElements() { const $countDown = this.$element.find('.elementor-countdown-wrapper'); this.cache = { $countDown, timeInterval: null, elements: { $countdown: $countDown.find('.elementor-countdown-wrapper'), $daysSpan: $countDown.find('.elementor-countdown-days'), $hoursSpan: $countDown.find('.elementor-countdown-hours'), $minutesSpan: $countDown.find('.elementor-countdown-minutes'), $secondsSpan: $countDown.find('.elementor-countdown-seconds'), $expireMessage: $countDown.parent().find('.elementor-countdown-expire--message') }, data: { id: this.$element.data('id'), endTime: new Date($countDown.data('date') * 1000), actions: $countDown.data('expire-actions'), evergreenInterval: $countDown.data('evergreen-interval') } }; }, onInit() { elementorModules.frontend.handlers.Base.prototype.onInit.apply(this, arguments); this.cacheElements(); if (0 < this.cache.data.evergreenInterval) { this.cache.data.endTime = this.getEvergreenDate(); } this.initializeClock(); }, updateClock() { const self = this, timeRemaining = this.getTimeRemaining(this.cache.data.endTime); jQuery.each(timeRemaining.parts, function (timePart) { const $element = self.cache.elements['$' + timePart + 'Span']; let partValue = this.toString(); if (1 === partValue.length) { partValue = 0 + partValue; } if ($element.length) { $element.text(partValue); } }); if (timeRemaining.total <= 0) { clearInterval(this.cache.timeInterval); this.runActions(); } }, initializeClock() { const self = this; this.updateClock(); this.cache.timeInterval = setInterval(function () { self.updateClock(); }, 1000); }, runActions() { const self = this; // Trigger general event for 3rd patry actions self.$element.trigger('countdown_expire', self.$element); if (!this.cache.data.actions) { return; } this.cache.data.actions.forEach(function (action) { switch (action.type) { case 'hide': self.cache.$countDown.hide(); break; case 'redirect': if (action.redirect_url && action.redirect_url.startsWith('http')) { window.location.href = action.redirect_url; } break; case 'message': self.cache.elements.$expireMessage.show(); break; } }); }, getTimeRemaining(endTime) { const timeRemaining = endTime - new Date(); let seconds = Math.floor(timeRemaining / 1000 % 60), minutes = Math.floor(timeRemaining / 1000 / 60 % 60), hours = Math.floor(timeRemaining / (1000 * 60 * 60) % 24), days = Math.floor(timeRemaining / (1000 * 60 * 60 * 24)); if (days < 0 || hours < 0 || minutes < 0) { seconds = minutes = hours = days = 0; } return { total: timeRemaining, parts: { days, hours, minutes, seconds } }; }, getEvergreenDate() { const self = this, id = this.cache.data.id, interval = this.cache.data.evergreenInterval, dueDateKey = id + '-evergreen_due_date', intervalKey = id + '-evergreen_interval', localData = { dueDate: localStorage.getItem(dueDateKey), interval: localStorage.getItem(intervalKey) }, initEvergreen = function () { var evergreenDueDate = new Date(); self.cache.data.endTime = evergreenDueDate.setSeconds(evergreenDueDate.getSeconds() + interval); localStorage.setItem(dueDateKey, self.cache.data.endTime); localStorage.setItem(intervalKey, interval); return self.cache.data.endTime; }; if (null === localData.dueDate && null === localData.interval) { return initEvergreen(); } if (null !== localData.dueDate && interval !== parseInt(localData.interval, 10)) { return initEvergreen(); } if (localData.dueDate > 0 && parseInt(localData.interval, 10) === interval) { return localData.dueDate; } } }); /***/ }) }]); //# sourceMappingURL=countdown.60cf02eaf22d71d83f3d.bundle.js.mapvar jabvfcr_selector; var jabvfcr_iframe = jQuery('.jabvfcr .js-inspector .js-site-preview-iframe')[0].contentWindow; jabvfcr_iframe.addEventListener("load", function() { jabvfcr_openInspector(); }); function jabvfcr_isValidSelector() { jQuery('.jabvfcr .invalid').addClass('dn'); var selector = jQuery('.jabvfcr .js-selector').val(); var isValid = jabvfcr_iframe.jabvfcr_isSelectorValid(selector); if (!isValid) { jQuery('.jabvfcr .invalid').removeClass('dn'); } return isValid; } function jabvfcr_selected(selector) { jQuery('.jabvfcr .js-selector').val(selector); jabvfcr_toggleOptions(); jQuery('.jabvfcr .invalid').addClass('dn'); } function jabvfcr_toggleOptions(hide) { jQuery('.jabvfcr .js-inspector .js-clear').toggleClass('dn', hide); } function jabvfcr_toggleOverlay(show) { jQuery('.jabvfcr .js-inspector')[show ? 'show' : 'hide'](); jQuery('body').css({ overflow: show ? 'hidden' : '' }); } function jabvfcr_updateCurrentSelector(selector) { jQuery('.jabvfcr .js-current-selector').text(selector); } function jabvfcr_getOptions() { var selector = jQuery('.jabvfcr .js-selector').val(); var manipulation = jQuery('.jabvfcr .js-manipulation:checked').val(); var content = tinyMCE.activeEditor && !tinyMCE.activeEditor.hidden ? tinyMCE.activeEditor.getContent() : jQuery('#content').val(); return { selector:selector, manipulation: manipulation, content: content }; } function jabvfcr_resetSelector() { jabvfcr_iframe.jabvfcr_resetSelector(); jQuery('.jabvfcr .js-selector').val(''); } function jabvfcr_openInspector() { jQuery('.jabvfcr .js-loading-screen').remove(); var selector = jQuery('.jabvfcr .js-selector').val(); if (selector && jabvfcr_iframe.jabvfcr_isSelectorValid(selector)) { jabvfcr_iframe.jabvfcr_updateSelector(selector); jabvfcr_toggleOptions(false); } jabvfcr_toggleOverlay(true); } function jabvfcr_saveSelector() { if (!jabvfcr_isValidSelector()) { return; } var data = { _ajax_nonce: jabvfcr_ajax.nonce, action: 'jabvfcr_save_selector', selector: jQuery('.jabvfcr .js-selector').val(), manipulation: jQuery('.jabvfcr .js-manipulation:checked').val(), content: tinyMCE.activeEditor && !tinyMCE.activeEditor.hidden ? tinyMCE.activeEditor.getContent() : jQuery('#content').val() }; jQuery.post(jabvfcr_ajax.url, data).then(function() { alert('Settings updated.'); }).fail(function() { alert('There was an unexpected error. Please try again.'); }); } (function ($) { jQuery( document ).on( 'tinymce-editor-init', function( event, editor ) { tinyMCE.activeEditor.onKeyUp.add(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); tinyMCE.activeEditor.onChange.add(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); }); jQuery('#content').keyup(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); jQuery('#content').change(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); $('.jabvfcr .js-inspector .js-clear').click(function(e) { jabvfcr_resetSelector(); jabvfcr_toggleOptions(); }); $('.jabvfcr .js-close-inspector').click(function(e) { e.preventDefault(); jabvfcr_toggleOverlay(false); }); $('.jabvfcr .js-toggle-advanced-options').click(function(e) { e.preventDefault(); $('.js-advanced-options').toggleClass('dn'); }); $('.jabvfcr form .js-submit').click(function(e) { e.preventDefault(); jabvfcr_saveSelector(); }); $('.jabvfcr form .js-selector').blur(function() { if (jabvfcr_isValidSelector()) { var selector = jQuery('.jabvfcr .js-selector').val(); jabvfcr_iframe.jabvfcr_updateSelector(selector); } }); $('.jabvfcr form .js-manipulation').change(function() { jabvfcr_iframe.jabvfcr_updateSelector(); }); $('.jabvfcr .js-open-inspector').click(function() { jabvfcr_openInspector(); }); })(jQuery); {"id":127,"date":"2023-03-08T20:47:35","date_gmt":"2023-03-08T20:47:35","guid":{"rendered":"https:\/\/educationway.co.uk\/?p=127"},"modified":"2023-03-08T20:47:51","modified_gmt":"2023-03-08T20:47:51","slug":"why-are-coding-lessons-important-for-young-people","status":"publish","type":"post","link":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/","title":{"rendered":"Why Are Coding Lessons Important for Young People"},"content":{"rendered":"

There are lots of ways that parents can help support their children throughout their learning journey, but one great way to ensure they are set up for academic success is to introduce them to coding lessons.<\/span><\/p>\n

Coding for children not only helps them work on their mathematics skills but allows them to improve their creativity and work on transferable life skills that can be taken on into the workforce as they grow up. But what actually is coding?<\/span><\/p>\n

To put it simply, coding is a method of communicating with computers. It is a unique language that only a computer understands to give it instructions in order for it to perform specific tasks. Coding is one of the methods used to create things such as websites, video games, phone apps and most importantly, computer software. So why is it so important for children to learn to code?\u00a0<\/span><\/p>\n

From critical thinking and enhanced creativity to problem solving and the job opportunities that can follow, we have teamed up with a <\/span>prep school in London<\/span><\/a> to explore the many reasons why coding lessons are important for young people.<\/span><\/p>\n

Coding lessons help children learn to problem solve<\/b><\/h2>\n

Through the practice of coding, children are able to understand computers better. The basics of coding alone helps children develop a love and appreciation for how things work. It also is a great way to show them how software engineers use maths to solve their problems in new and creative ways. Coding is one of the easiest ways to teach a child how to problem solve. This is one of the most valuable skills they can pick up in their childhood as problem solving skills will be needed all throughout life. By analysing a problem and breaking it down into smaller chunks, children will be able to identify solutions easier. When children are set the task to write code, it will require a whole lot of patience and persistence given that this activity isn\u2019t always the easiest to complete. These skills may seem simple but can be used in other subjects in school such as Maths and Science.\u00a0<\/span><\/p>\n

Coding lessons teach children how to think<\/b><\/h2>\n

Steve Jobs once said, \u201cA computer is a bicycle for your mind\u201d. This is because coding quite literally teaches children how to think. It isn’t just about teaching children how to write and type different lines of code. It’s about teaching young ones how to think outside of the box and differently to how they usually would. Being a great coder means to be able to think logically. Children will learn to see a big problem and break it down into smaller sections without hesitation to solve it in the best way possible. This is also known as decomposition and is something students will learn to adapt to as they practice coding on a regular basis. If the first solution doesn\u2019t work, they will have gained the ability to find 5 more. It helps young ones persevere and dig deeper into their minds when it comes to finding a solution.<\/span><\/p>\n

Coding lessons help children expand on their creativity<\/b><\/h2>\n

One of the greatest benefits of coding, is the creativity it allows children to gain. Every child is creative, some bake and others explore it through writing. In this case, creativity can be found through the simple act of coding. Through the constant experiments of filtering through different paths and patterns, children are able to work on their confidence and get creative. This is also because coding lessons require students to create something from absolutely nothing. Children are able to build their own websites or design their very own video games from scratch. This takes time and a whole lot of creativity to get right. But, with a bit of feedback and a whole lot of motivation, they will be on track to creating something amazing.\u00a0<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"

There are lots of ways that parents can help support their children throughout their learning journey, but one great way to ensure they are set up for academic success is to introduce them to coding lessons. Coding for children not only helps them work on their mathematics skills but allows them to improve their creativity […]<\/p>\n","protected":false},"author":1,"featured_media":128,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-127","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-education"],"yoast_head":"\nWhy Are Coding Lessons Important for Young People | Educationway<\/title>\n<meta name=\"description\" content=\"We have teamed up with a prep school in London to explore the many reasons why coding lessons are important for young people.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why Are Coding Lessons Important for Young People | Educationway\" \/>\n<meta property=\"og:description\" content=\"We have teamed up with a prep school in London to explore the many reasons why coding lessons are important for young people.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/\" \/>\n<meta property=\"og:site_name\" content=\"Education Way\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-08T20:47:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-08T20:47:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a\"},\"headline\":\"Why Are Coding Lessons Important for Young People\",\"datePublished\":\"2023-03-08T20:47:35+00:00\",\"dateModified\":\"2023-03-08T20:47:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/\"},\"wordCount\":653,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/educationway.co.uk\/#organization\"},\"image\":{\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png\",\"articleSection\":[\"Education\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/\",\"url\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/\",\"name\":\"Why Are Coding Lessons Important for Young People | Educationway\",\"isPartOf\":{\"@id\":\"https:\/\/educationway.co.uk\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png\",\"datePublished\":\"2023-03-08T20:47:35+00:00\",\"dateModified\":\"2023-03-08T20:47:51+00:00\",\"description\":\"We have teamed up with a prep school in London to explore the many reasons why coding lessons are important for young people.\",\"breadcrumb\":{\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#primaryimage\",\"url\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png\",\"contentUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png\",\"width\":1200,\"height\":628,\"caption\":\"coding lessons\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/educationway.co.uk\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Why Are Coding Lessons Important for Young People\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/educationway.co.uk\/#website\",\"url\":\"https:\/\/educationway.co.uk\/\",\"name\":\"Education Way\",\"description\":\"We Can Do It Better!\",\"publisher\":{\"@id\":\"https:\/\/educationway.co.uk\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/educationway.co.uk\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/educationway.co.uk\/#organization\",\"name\":\"Education Way\",\"url\":\"https:\/\/educationway.co.uk\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png\",\"contentUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png\",\"width\":468,\"height\":180,\"caption\":\"Education Way\"},\"image\":{\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/educationway.co.uk\"],\"url\":\"https:\/\/educationway.co.uk\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Why Are Coding Lessons Important for Young People | Educationway","description":"We have teamed up with a prep school in London to explore the many reasons why coding lessons are important for young people.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/","og_locale":"en_US","og_type":"article","og_title":"Why Are Coding Lessons Important for Young People | Educationway","og_description":"We have teamed up with a prep school in London to explore the many reasons why coding lessons are important for young people.","og_url":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/","og_site_name":"Education Way","article_published_time":"2023-03-08T20:47:35+00:00","article_modified_time":"2023-03-08T20:47:51+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#article","isPartOf":{"@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/"},"author":{"name":"admin","@id":"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a"},"headline":"Why Are Coding Lessons Important for Young People","datePublished":"2023-03-08T20:47:35+00:00","dateModified":"2023-03-08T20:47:51+00:00","mainEntityOfPage":{"@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/"},"wordCount":653,"commentCount":0,"publisher":{"@id":"https:\/\/educationway.co.uk\/#organization"},"image":{"@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#primaryimage"},"thumbnailUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png","articleSection":["Education"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/","url":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/","name":"Why Are Coding Lessons Important for Young People | Educationway","isPartOf":{"@id":"https:\/\/educationway.co.uk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#primaryimage"},"image":{"@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#primaryimage"},"thumbnailUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png","datePublished":"2023-03-08T20:47:35+00:00","dateModified":"2023-03-08T20:47:51+00:00","description":"We have teamed up with a prep school in London to explore the many reasons why coding lessons are important for young people.","breadcrumb":{"@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#primaryimage","url":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png","contentUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/why-kids-should-learn-to-code-.png","width":1200,"height":628,"caption":"coding lessons"},{"@type":"BreadcrumbList","@id":"https:\/\/educationway.co.uk\/why-are-coding-lessons-important-for-young-people\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/educationway.co.uk\/"},{"@type":"ListItem","position":2,"name":"Why Are Coding Lessons Important for Young People"}]},{"@type":"WebSite","@id":"https:\/\/educationway.co.uk\/#website","url":"https:\/\/educationway.co.uk\/","name":"Education Way","description":"We Can Do It Better!","publisher":{"@id":"https:\/\/educationway.co.uk\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/educationway.co.uk\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/educationway.co.uk\/#organization","name":"Education Way","url":"https:\/\/educationway.co.uk\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/","url":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png","contentUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png","width":468,"height":180,"caption":"Education Way"},"image":{"@id":"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/educationway.co.uk\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/educationway.co.uk"],"url":"https:\/\/educationway.co.uk\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts\/127","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/comments?post=127"}],"version-history":[{"count":1,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts\/127\/revisions"}],"predecessor-version":[{"id":129,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts\/127\/revisions\/129"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/media\/128"}],"wp:attachment":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/media?parent=127"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/categories?post=127"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/tags?post=127"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}