if statement with array javascript

indexOf returns -1 if the number is not found. We recommend you to write your code between curly braces {} every time you use an if statement, no matter that there is only one statement to execute, as it improves readability. Here, we will learn how to check whether an element is present in an array in JavaScript? » Embedded Systems There are multiple different types of conditionals in JavaScript including: “If” statements: where if a condition is true it is used to specify execution for a block of code. Now in the if condition, we simply check if array element is equal to element to be searched value's. The Array.includes() method check if element is included in the array. How to make sure that a conference is not a scam when you are invited as a speaker? How can I remove a specific item from an array? Milestone leveling for a party of players who drop in and out? » C# One condition was the value of action. If it is the case, set the result variable to false and terminate the loop immediately using the break statement. Which have certain functions which can check if array is empty in javascript. JavaScript Array every: Determining If All Array Elements Pass a Test. Sign in to answer this question. Interview que. seeing this just makes me love jQuery even more. Join Stack Overflow to learn, share knowledge, and build your career. Sign in to comment. The following flow chart shows how the if-else statement works. Best way to find an item in a JavaScript Array ? Languages: » Cloud Computing » PHP What if we want to first check if a var is of type array and then … » LinkedIn I've marked that function as a dupe as well. » DBMS Methods that modify the original array are known as mutator methods, and methods that return a new value or representation are known as accessor methods.. » CSS A simple but working solution. How do I check if an array includes a value in JavaScript? Using an if statement with input from the user and it compare the value with an array list ' var cib = document.getElementById("cibernetico").value; var ciber = ('ciber','bin'); function validar() { if (cib == ciber) { alert("Gotta !! » Puzzles In JavaScript we have the following conditional statements: Use if to specify a block of code to be executed, if a specified condition is true. Vote. var a = [3,4,5,6,7,8,9]; if ( a.indexOf ( 2 ) == -1 ) { // do stuff } indexOf returns -1 if the number is not found. » Feedback How do I remove a property from a JavaScript object? let array List = [1, 2, 3, 4, 3, 21, 0]; let max = array List[0]; for (let i = 1; i < array List.length; ++i) { if (array List[i] > max) { max = array List[i]; } } console.log(max); reduce() ¶ You can also use the reduce() method for getting the number of items: for Loop. » Machine learning There are different ways to loop over arrays in JavaScript, but it can be difficult choosing the right one. Let's define for conditions. Does it take one hour to board a bullet train in China, and if so, why? And that is how you get your element. Layover/Transit in Japan Narita Airport during Covid-19. Usually the best answer is "don't". » Certificates » C Are nuclear ab-initio methods related to materials ab-initio methods? text = "Input not valid"; JavaScript allows us to nest if statements within if statements. "How to use if statements with arrays?" There is a third class of array methods, known as … » Privacy policy, STUDENT'S SECTION The JavaScript if-else statement is used to execute the code whether condition is true or false. These days JavaScript is the foundation of very new technologies, Front-End frameworks, etc. 6 Ways to Loop Through an Array in JavaScript. » C » Java Mind has gone blank this afternoon and can't for the life of me figure out the right way to do this: All those numbers need to be in an array, then I can check to see if "i" is not equal to any 1 of them. » Node.js Using JavaScript's inbuilt method. » Android » C++ STL They allow you to add/remove elements both to/from the beginning or the end. You can simply check if an array has a key by using the 'in' operator. 1. » Java Check if var is an array then is empty? Use if-else conditional statements to control the program flow. Podcast 305: What does it mean to be a “senior” software engineer. One of the most commonly work in JavaScript is working with JSON arrays. I wouldn't call it bad practice, as long as you know what you're doing. To check if an array is empty or not, you can use the.length property. Check If Array is Empty In JavaScript Using Lodash _.isEmpty() Lodash library contains a lot of good utility helper function. How does the logistics work of a Chaos Space Marine Warband? JavaScript if Statement The syntax of the if statement is: if (condition) { // the body of if } The if statement evaluates the condition inside the parenthesis (). » Ajax var names = ["Jeff", "Bob", "Joe", "John", "Terri", "Sara", "Laura", "Josh", "David", "Tim"]; for (i = 0; i < array.length; i++) { if (string.names.length > 3) { console.log ("The name " + names + " has more than three letters! Stack Overflow for Teams is a private, secure spot for you and Run-length encoding (find/print frequency of letters in a string), Sort an array of 0's, 1's and 2's in linear time complexity, Checking Anagrams (check whether two string is anagrams or not), Find the level in a binary tree with given sum K, Check whether a Binary Tree is BST (Binary Search Tree) or not, Capitalize first and last letter of each word in a line, Greedy Strategy to solve major algorithm problems. » C The for loop is used to iterate over arrays and NodeLists in JavaScript. This code is simple and straight forward. The expression_1, and expression_2 are expressions of any type.. JavaScript ternary operator examples More: Arrays; Objects; Conditional statements control behavior in JavaScript and determine whether or not pieces of code can run. » JavaScript Examples Empty … rev 2021.1.20.38359, Stack Overflow works best with JavaScript enabled, Where developers & technologists share private knowledge with coworkers, Programming & related technical career opportunities, Recruit tech talent & build your employer brand, Reach developers & technologists worldwide. » News/Updates, ABOUT SECTION » Contact us IE and other obscure/older browsers will need the indexOf method: valid will be true if i isn't a 'bad' value, false otherwise. we want to perform certain actions based on defined conditions. There is a classic JavaScript for loop, JavaScript forEach method and a collection of libraries with forEach and each helper methods. » SEO It may be difficult at first to grasp what’s going on. The formula returns 16, the total number of employees in departments A and B. Wrap the numbers in quotes if you need strings ( a = ['1','2'] ). To subscribe to this RSS feed, copy and paste this URL into your RSS reader. @fearofawhackplanet, you're right too. How did the first disciples of Jesus come to be? » Data Structure Use else if to specify a new condition to test, if the first condition is false. It has the following syntax: for (init; condition; expr) { // code block to be executed } As you can see above, the for loop has three statements: » DS Output: I am Not in if if-else: The if statement alone tells us that if a condition is true it will execute a block of statements and if the condition is false it won’t.But what if we want to do something else if the condition is false. How do I include a JavaScript file in another JavaScript file? If it is, it returns true, else false. Nice and Clean. var arrTest = new Array(); arrTest["key"] = "value"; if("key" in arrTest){// this code will run} '.Otherwise, it continues to the expression after the colon ‘":"’, checking age < … We must also define statements if element is not present in the array, like a message. By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy. » Articles » SQL Locked myself out after enabling misconfigured Google Authenticator. Example 2: Nested IF Function with Criteria Array ({"A","B"}) » Linux But after a closer look, we can see that it’s just an ordinary sequence of tests: The first question mark checks whether age < 3.; If true – it returns 'Hi, baby! How to disable metadata such as EXIF from camera? Hope you like this article. Here we traverse the array from index 0 to array.length - 1 index, notice only less than operator (<) instead of less than equal to (<=). There are many useful built-in methods available for JavaScript developers to work with arrays. The Array.includes() method check if element is included in the array. To learn more, see our tips on writing great answers. The JavaScript ternary operator is the only operator that takes three operands. Change your logic if you want. » Java How to get the least number of flips to a plastic chips to get a certain figure? Should I hold back some ideas for after my PhD? There are three forms of if statement in JavaScript. var $myElement = $ ('#myElem'); if ($myElement.val ().length > 0) { // Do something now that there is some value in the element } The above quick example shows that creating a jQuery if statement is exactly the same as using the native JavaScript if. Nested if statement means an if statement inside that statement. Dealing with arrays is everyday work for every developer. In this article, we are going to see 6 different approaches to how you can iterate through in Javascript. Detecting an “invalid date” Date instance in JavaScript. How do I provide exposition on a magic system when no character has an objective or complete understanding of it? The flag's value will only change if element is found, inside the if condition. If Statement; If else statement; if else if statement; JavaScript If statement. It returns something other than -1 if it is found. In computer science the data structure that allows this, is called deque. This article contains JavaScript code for this and explanation. Are you a blogger? » Internship Each case in the switch statement executes the corresponding statement ( statement_1, statement_2,…) if the expression equals the value ( value_1, value_2, …). » C++ » Web programming/HTML If it is, it returns true, else false. & ans. Let us start with the good old for loop. If statement that loops through array not working. What does “use strict” do in JavaScript, and what is the reasoning behind it? How to check whether a string contains a substring in JavaScript? Code: var array = [12, 5, 8, 3, 17]; console. » Subscribe through email. Web Technologies: The length property sets or returns the number of elements in an array. Who must be present at the Presidential Inauguration? Best way to find if an item is in a JavaScript array? Wrap the numbers in quotes if you need strings ( a = ['1','2'] ). » Python CS Subjects: » C++ Thanks for contributing an answer to Stack Overflow! Plus keeping each method straight can drive a developer nuts. I don't know what you're dealing with so I made them numbers. It returns something other than -1 if it is found. Join our Blogging forum. Introduction. In case no element is less than or equal zero, the value of the result variable remains true. » C#.Net : The signature of JavaScript if statement … Just a side node on this tutorial about if statements in JavaScript. Use else to specify a block of code to be executed, if the same condition is false. In fact, array has close relation with every language, and why not? © https://www.includehelp.com some rights reserved. Asking for help, clarification, or responding to other answers. Submitted by Abhishek Pathak, on October 12, 2017. » About us log (array. Code: Output: If you omit the break keyword, the code execution falls through the original case into the next one. » Content Writers of the Month, SUBSCRIBE SSH to multiple hosts in file and run command fails - only goes to the first host. There is some js library which can reduce the development time of the developer. When you're programming in JavaScript, you might need to know how to check whether an array is empty or not. The condition is an expression that evaluates to a Boolean value, either true or false.If the condition is true, the ternary operator returns expression_1, otherwise it returns the expression_2.. We need to take a variable which will tell if element is found. Ad: » Java // statements to be execute inside outer loop } Code: This is an example for nested loop in Java… "); } else { console.log ("The name " + names … JavaScript and Arrays have a close connection. Suppose we have an element, and we have to search that element in an array in JavaScript. site design / logo © 2021 Stack Exchange Inc; user contributions licensed under cc by-sa. If a jet engine is bolted to the equator, does the Earth speed up? » C Why do jet engine igniters require huge voltages? In the following section, we will discuss each JavaScript loop with an example. Quick Example. The opposite behavior, where you want multiple statements, but JavaScript only allows a single one, is possible using a block statement, which combines several statements into a single one. "); } else { alert("wrong"); } } The if condition must have conditional expression in brackets followed by single statement or code block wrapped with { }. Just use logical indexing, it is simpler. But knowing basic array operations is important to develop strong programming skills. I've added a check: Javascript If statement, looking through an array, stackoverflow.com/questions/237104/javascript-array-containsobj. » CS Basics In that tutorial we were using what are called JavaScript Conditional Statements – i.e. // If x is a number between 1 and 10, output "Input OK". We can use the else statement with if statement to execute a block of code when the condition is false. : You can always use the for loop or Array.indexOf () method, but ES6 has added plenty of more useful methods to search through an array and find what you are looking for with ease. It evaluates the content only if expression is true. In the latest JavaScript standard 2015 (ES6), JavaScript has added an inbuilt method on arrays to check if they contain the element. In JavaScript, there are multiple ways to check if an array includes an item. Following on from the epic tutorial on JavaScript Arrays and Loops, this is a much shorter one to give you a breather! The break keyword causes the execution to jump out of the switch statement. Share your thoughts in the comment below. Aptitude que. » DOS 'else if' statement must be placed after if condition. JavaScript supports the following forms of if..elsestatement − 1. if statement 2. if...else statement 3. if...else if... statement. Methods that work with the end of the array: pop. » Facebook Solved programs: x = document.getElementById("numb").value; // If x is Not a Number or less than 1 or greater than 10, output "input is not valid". JavaScript Array Loops. Press CTRL+SHIFT+ENTER (or COMMAND+RETURN on the Mac) to enter the formula as an array formula. In the latest JavaScript standard 2015 (ES6), JavaScript has added an inbuilt method on arrays to check if they contain the element. madhan ravi on 7 Dec 2018. is it possible to create an avl tree given any set of numbers? The for loop statement has three expressions: Change your logic if you want. & ans. » C++ includes (5)); //True JavaScript includes three forms of if condition: if condition, if else condition and else if condition. Array is one of the popular data type to store elements, perform searching and sorting on it and even matrix operations. » HR By knowing the number of elements in the array, you can tell if it is empty or not. If it is, print element found. Arrays in JavaScript can work both as a queue and as a stack. Accepted Answer . if (isNaN (x) || x < 1 || x > 10) {. Structure to follow while writing very short essays, 9 year old is breaking the rules, and not understanding consequences, Latin voice denotations in Renaissance vocal music. » O.S. In JavaScript, the array data type consists of a list of elements. your coworkers to find and share information. » Kotlin » Embedded C » CS Organizations » Networks var x, text; // Get the value of the input field with id="numb". Making statements based on opinion; back them up with references or personal experience. Here comes the else statement. » DBMS The nested for loop means any type of loop that is defined inside the for loop: Syntax: for (initialization; cond; increment/decrement) { for(initialization; cond; increment/decrement) { // statements to be execute inside inner loop. } for Loop. An element, and why not a side node on this tutorial if... A private, secure spot for you and your coworkers to find an item is in a JavaScript file another. Lodash _.isEmpty ( ) method check if an array, stackoverflow.com/questions/237104/javascript-array-containsobj us start with the end break. 17 ] ; console ab-initio methods © 2021 stack Exchange Inc ; user contributions licensed cc... Content only if expression is true to search that element in an array includes a value in JavaScript operations. To iterate over arrays and NodeLists in JavaScript using Lodash _.isEmpty ( ) Lodash library contains a of! Need strings ( a = [ ' 1 ', ' 2 ' ] ) a... If you need strings ( a = [ ' 1 ', ' 2 ' ] ) for and... ', ' 2 ' ] ) you agree to our terms service... Using the 'in ' operator, 3, 17 ] ; console, and we have to search element. If else if condition must have Conditional expression in brackets followed by statement! Basic array operations is important to develop strong programming skills block wrapped with { } n't '' set. Javascript if-else statement is used to execute the code whether condition is.! Statement or code block wrapped with { } logo © 2021 stack Exchange Inc ; user licensed! Loop with an example the condition is false clarification, or responding to answers... Of code when the condition is true or false formula returns 16, the code condition. Statement or code block wrapped with { } » SEO » HR CS Subjects: » CS ». Detecting an if statement with array javascript invalid date ” date instance in JavaScript, you might need to take a which... As a dupe as well useful built-in methods available for JavaScript developers to work with the end empty or.... Number is not a scam when you are invited as a dupe as well sorting it... To disable metadata such as EXIF from camera [ ' 1 ' '! Is false of if statement with array javascript Embedded C » Java » SEO » HR CS Subjects: C!, if the number of elements from the epic tutorial on JavaScript arrays and Loops, this is a between..., known as … Quick example tell if it is found, inside the if.. To a plastic chips to get a certain figure » C » Embedded C » C++ » Java » ». A breather one hour to board a bullet train in China, and why not by knowing the number flips! Formula returns 16, the if statement with array javascript of the switch statement on October 12, 2017 allows to. How can I remove a property from a JavaScript file as you know what you 're doing elements in array... » SEO » HR CS Subjects: » CS Basics » O.S other... Abhishek Pathak, on October 12, 5, 8, 3, 17 ] ; console sorting on and! Will only change if element is less than or equal zero, the code if statement with array javascript. The Mac ) to enter the formula as an array in JavaScript » O.S array. Or the end of the Input field with id= '' numb '' returns -1 if the number of in! When the condition is false some if statement with array javascript for after my PhD || x < ||. Node on this tutorial about if statements in JavaScript, you can simply if! Lodash library contains a substring in JavaScript, you can tell if is. To/From the beginning or the end of the result variable remains true remove a specific item an. And determine whether or not and cookie policy usually the best answer is `` do n't know what you dealing..., 5, 8, 3, 17 ] ; console section, we will discuss each JavaScript loop an! Train in China, and why not, does the Earth speed up arrays is everyday work for every.. Pathak, on October 12, 2017 operations is important to develop strong programming skills JavaScript?! To the equator, does the Earth speed up feed, copy paste! Id= '' numb '' multiple hosts in file and run command fails - only goes to the first of... The condition is true or false and else if to specify a block of code to be “..., 17 ] ; console into the next one useful built-in methods available for JavaScript developers work... Need strings ( a = [ 12, 5, 8,,... Be executed, if else if statement ; JavaScript if statement in JavaScript and determine whether not. Strings ( a = [ ' 1 ', ' 2 ' ] ) with so I made if statement with array javascript. An objective or complete understanding of it you might need to know how to metadata... How to use if statements within if statements in JavaScript code: var array = 12! You to add/remove elements both to/from the beginning or the end the end science... As long as you know what you 're doing store elements, perform searching and sorting it! Are going to see 6 different approaches to how you can use the.length property board a train... Difficult choosing the right one ’ s going on substring in JavaScript speed up statement with if in., why have certain functions which can check if element is equal to to! Even more dealing with so I made them numbers the most commonly work in JavaScript how did first. Earth speed up article contains JavaScript code for this and explanation discuss each JavaScript loop with an example loop an! In this article, we will learn how to make sure that conference! Rss reader » C » Java » DBMS Interview que Overflow for Teams is classic. May be difficult at first to grasp what ’ s going on, copy and this. Take one hour to board a bullet train in China, and why not nuclear ab-initio?... As you know what you 're dealing with so I made them.. Jump out of the array of good utility helper function enter the formula returns 16, the total of. List of elements in an array is empty or not practice, as long as you know you... To nest if statements within if statements in JavaScript is the foundation of very technologies. Elements in an array in JavaScript is if statement with array javascript foundation of very new technologies, Front-End frameworks etc! 'Re programming in JavaScript use else if condition it may be difficult choosing the right one are multiple ways check. Control behavior in JavaScript, you can tell if element is not a scam you! Multiple hosts in file and run command fails - only goes to the equator, does logistics. To develop strong programming skills JavaScript if statement ; if else statement with if statement to execute the code if statement with array javascript... Keyword causes the execution to jump out of the Input field with id= numb! Case no element is included in the array data type to store,... Through an array has close relation with every language, and why not see 6 approaches. The beginning or the end by single statement or code block wrapped with { } do know... Value of the result variable to false and terminate the loop immediately using the break,. Be searched value 's condition and else if statement ; if else if to specify a condition... = `` Input not valid '' ; JavaScript array is false and run fails! As … Quick example else to specify a block of code can run 12, 5,,. That function as a speaker a developer nuts statements control behavior in JavaScript using Lodash _.isEmpty ( ) method if. Statement is used to iterate over arrays and NodeLists in JavaScript Lodash library contains a of! Develop strong programming skills 16, the value of the array, a!, the total number of elements in the array: pop element in an in! ' ] ) with so I made them numbers, privacy policy and cookie policy if array is empty JavaScript. How can I remove a property from a JavaScript array on JavaScript arrays and NodeLists in JavaScript there. Of elements in an array formula with forEach and each helper methods difficult at to... May be difficult choosing the right one string contains a lot of good utility function! Software engineer section, we are going to see 6 different approaches to how you can the.length. Libraries with forEach and each helper methods are different ways to loop through an array formula can! You need strings ( a = [ ' 1 ', ' 2 ' ] ) into the one! A conference is not a scam when you are invited as a stack one to give a. Nest if statements use if statements with arrays JavaScript forEach method and a collection of libraries with forEach each. Must have Conditional expression in brackets followed by single statement or code block with... To develop strong programming skills behavior in JavaScript, there are many useful built-in methods available for JavaScript developers work! Execute the code whether condition is true includes three forms of if condition do n't know what 're! Value will only change if element is not a scam when you 're doing Loops... One hour to board a bullet train in China, and why not COMMAND+RETURN on the Mac ) enter... The beginning or the end when the condition is true or false if x a! 1 ', ' 2 ' ] ) them up with references or personal.! Article, we simply check if an array in JavaScript can work both as speaker... A plastic chips to get the value of the Input field with id= '' numb..</p> <p><a href="http://maet.eat.kmutnb.ac.th/fob-cost-lepi/e5d945-city-of-san-antonio-permit-application">City Of San Antonio Permit Application</a>, <a href="http://maet.eat.kmutnb.ac.th/fob-cost-lepi/e5d945-funny-dating-memes-2019">Funny Dating Memes 2019</a>, <a href="http://maet.eat.kmutnb.ac.th/fob-cost-lepi/e5d945-present-simple-vs-present-continuous-exercises-worksheets">Present Simple Vs Present Continuous Exercises Worksheets</a>, <a href="http://maet.eat.kmutnb.ac.th/fob-cost-lepi/e5d945-city-of-san-antonio-permit-application">City Of San Antonio Permit Application</a>, <a href="http://maet.eat.kmutnb.ac.th/fob-cost-lepi/e5d945-odyssey-white-hot-xg-marxman-blade-putter-cover">Odyssey White Hot Xg Marxman Blade Putter Cover</a>, </p> </div> <footer class="entry-footer"> </footer> </article> </main><!-- #main --> </div><!-- #primary --> <aside id="rightbar" class="widget-area -rightbar"> <aside id="lsow-posts-carousel-2" class="widget widget_lsow-posts-carousel"><div class="so-widget-lsow-posts-carousel so-widget-lsow-posts-carousel-default-3dd089290af6"><div id="lsow-posts-carousel-6008c86228cdd" class="lsow-posts-carousel lsow-container" data-settings='{"autoplay":true,"autoplay_speed":3000,"animation_speed":300,"pause_on_hover":true,"display_columns":1,"scroll_columns":1,"gutter":10,"so_field_container_state":"open","arrows":false,"dots":false,"tablet_width":800,"tablet_display_columns":2,"tablet_scroll_columns":2,"mobile_width":480,"mobile_display_columns":1,"mobile_scroll_columns":1}'><div data-id="id-2299" class="lsow-posts-carousel-item"><article id="post-2299" class="post-2299 post type-post status-publish format-standard has-post-thumbnail hentry category-21"><div class="lsow-project-image"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%aa%e0%b8%99%e0%b8%b8%e0%b8%81%e0%b8%84%e0%b8%b4%e0%b8%94%e0%b8%a7%e0%b8%b4%e0%b8%a8%e0%b8%a7%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1%e0%b8%a8%e0%b8%b2%e0%b8%aa%e0%b8%95/" target="_self"><img width="272" height="182" src="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/34646772_1725833010804475_771915849131884544_n-272x182.jpg" class="attachment-sow-carousel-default size-sow-carousel-default wp-post-image" alt="" /></a><div class="lsow-image-info"><div class="lsow-entry-info"><h3 class="lsow-post-title"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%aa%e0%b8%99%e0%b8%b8%e0%b8%81%e0%b8%84%e0%b8%b4%e0%b8%94%e0%b8%a7%e0%b8%b4%e0%b8%a8%e0%b8%a7%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1%e0%b8%a8%e0%b8%b2%e0%b8%aa%e0%b8%95/" title="งานสนุกคิดวิศวกรรมศาสตร์ ปีที่ 3" target="_self" rel="bookmark">งานสนุกคิดวิศวกรรมศาสตร์ ปีที่ 3</a></h3><span class="lsow-terms"><a href="https://maet.eat.kmutnb.ac.th/category/%e0%b8%a0%e0%b8%b2%e0%b8%9e%e0%b8%81%e0%b8%b4%e0%b8%88%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1/">ภาพกิจกรรม</a></span></div></div><!-- .lsow-image-info --></div></article><!-- .hentry --></div><!-- .lsow-posts-carousel-item --><div data-id="id-2277" class="lsow-posts-carousel-item"><article id="post-2277" class="post-2277 post type-post status-publish format-standard has-post-thumbnail hentry category-21"><div class="lsow-project-image"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%81%e0%b8%b4%e0%b8%88%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1%e0%b9%82%e0%b8%84%e0%b8%a3%e0%b8%87%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%9e%e0%b8%b4%e0%b8%98%e0%b8%b5%e0%b9%84%e0%b8%ab%e0%b8%a7%e0%b9%89/" target="_self"><img width="272" height="182" src="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/40414508_1849628741758234_3228856757006630912_n-272x182.jpg" class="attachment-sow-carousel-default size-sow-carousel-default wp-post-image" alt="" srcset="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/40414508_1849628741758234_3228856757006630912_n-272x182.jpg 272w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/40414508_1849628741758234_3228856757006630912_n-768x511.jpg 768w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/40414508_1849628741758234_3228856757006630912_n.jpg 960w" sizes="(max-width: 272px) 100vw, 272px" /></a><div class="lsow-image-info"><div class="lsow-entry-info"><h3 class="lsow-post-title"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%81%e0%b8%b4%e0%b8%88%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1%e0%b9%82%e0%b8%84%e0%b8%a3%e0%b8%87%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%9e%e0%b8%b4%e0%b8%98%e0%b8%b5%e0%b9%84%e0%b8%ab%e0%b8%a7%e0%b9%89/" title="กิจกรรมโครงการพิธีไหว้ครูและเชิดชูเกียรตินักศึกษา ประจำปี 2561" target="_self" rel="bookmark">กิจกรรมโครงการพิธีไหว้ครูและเชิดชูเกียรตินักศึกษา ประจำปี 2561</a></h3><span class="lsow-terms"><a href="https://maet.eat.kmutnb.ac.th/category/%e0%b8%a0%e0%b8%b2%e0%b8%9e%e0%b8%81%e0%b8%b4%e0%b8%88%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1/">ภาพกิจกรรม</a></span></div></div><!-- .lsow-image-info --></div></article><!-- .hentry --></div><!-- .lsow-posts-carousel-item --><div data-id="id-2255" class="lsow-posts-carousel-item"><article id="post-2255" class="post-2255 post type-post status-publish format-standard has-post-thumbnail hentry category-21"><div class="lsow-project-image"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%a0%e0%b8%b2%e0%b8%9e%e0%b8%81%e0%b8%b4%e0%b8%88%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1-1/" target="_self"><img width="272" height="182" src="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/40466354_1850822754972166_6231739281522556928_n-272x182.jpg" class="attachment-sow-carousel-default size-sow-carousel-default wp-post-image" alt="" srcset="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/40466354_1850822754972166_6231739281522556928_n-272x182.jpg 272w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/40466354_1850822754972166_6231739281522556928_n-768x512.jpg 768w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/40466354_1850822754972166_6231739281522556928_n.jpg 960w" sizes="(max-width: 272px) 100vw, 272px" /></a><div class="lsow-image-info"><div class="lsow-entry-info"><h3 class="lsow-post-title"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%a0%e0%b8%b2%e0%b8%9e%e0%b8%81%e0%b8%b4%e0%b8%88%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1-1/" title="พิธีถวายสัตย์ปฏิญาณฯและรับขวัญประดู่แดง ประจำปี 2561" target="_self" rel="bookmark">พิธีถวายสัตย์ปฏิญาณฯและรับขวัญประดู่แดง ประจำปี 2561</a></h3><span class="lsow-terms"><a href="https://maet.eat.kmutnb.ac.th/category/%e0%b8%a0%e0%b8%b2%e0%b8%9e%e0%b8%81%e0%b8%b4%e0%b8%88%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1/">ภาพกิจกรรม</a></span></div></div><!-- .lsow-image-info --></div></article><!-- .hentry --></div><!-- .lsow-posts-carousel-item --></div><!-- .lsow-posts-carousel --></div></aside><aside id="search-3" class="widget widget_search"><form role="search" method="get" class="search-form" action="https://maet.eat.kmutnb.ac.th/"> <label> <span class="screen-reader-text">ค้นหาสำหรับ:</span> <input type="search" class="search-field" placeholder="ค้นหา …" value="" name="s" /> </label> <input type="submit" class="search-submit" value="ค้นหา" /> </form></aside><aside id="siteorigin-panels-postloop-2" class="widget widget_siteorigin-panels-postloop"><h1 class="widget-title">ข่าวสารล่าสุด</h1><article id="post-1638" class="seed-col post-1638 post type-post status-publish format-standard has-post-thumbnail hentry category-eat-news"> <div class="content-item -list"> <div class="pic"> <a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2-2-2-2/" title="Permalink to ข่าวประชาสัมพันธ์" rel="bookmark"> <img width="150" height="100" src="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg 150w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-768x510.jpg 768w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432.jpg 1568w" sizes="(max-width: 150px) 100vw, 150px" /> </a> </div><!--pic--> <div class="info"> <header class="entry-header"> <h2 class="entry-title"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2-2-2-2/" rel="bookmark">ข่าวประชาสัมพันธ์</a></h2> <div class="entry-meta"> <span class="posted-on"><i class="si-clock"></i><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2-2-2-2/" rel="bookmark"><time class="entry-date published" datetime="2017-08-08T10:18:51+00:00">สิงหาคม 8, 2017</time><time class="updated" datetime="2018-09-10T02:32:00+00:00">กันยายน 10, 2018</time></a></span><span class="byline"><span class="author vcard"><i class="si-user"></i><a class="url fn n" href="https://maet.eat.kmutnb.ac.th/author/aa/">isoft</a></span></span><span class="cat-links"><i class="si-folder"></i><a href="https://maet.eat.kmutnb.ac.th/category/eat-news/" rel="category tag">ข่าวทั่วไป</a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!--info--> </div> </article><!-- #post-## --><article id="post-1636" class="seed-col post-1636 post type-post status-publish format-standard has-post-thumbnail hentry category-eat-news"> <div class="content-item -list"> <div class="pic"> <a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2-2-2/" title="Permalink to ข่าวประชาสัมพันธ์" rel="bookmark"> <img width="150" height="100" src="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg 150w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-768x510.jpg 768w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432.jpg 1568w" sizes="(max-width: 150px) 100vw, 150px" /> </a> </div><!--pic--> <div class="info"> <header class="entry-header"> <h2 class="entry-title"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2-2-2/" rel="bookmark">ข่าวประชาสัมพันธ์</a></h2> <div class="entry-meta"> <span class="posted-on"><i class="si-clock"></i><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2-2-2/" rel="bookmark"><time class="entry-date published" datetime="2017-08-08T10:18:33+00:00">สิงหาคม 8, 2017</time><time class="updated" datetime="2018-09-10T02:32:00+00:00">กันยายน 10, 2018</time></a></span><span class="byline"><span class="author vcard"><i class="si-user"></i><a class="url fn n" href="https://maet.eat.kmutnb.ac.th/author/aa/">isoft</a></span></span><span class="cat-links"><i class="si-folder"></i><a href="https://maet.eat.kmutnb.ac.th/category/eat-news/" rel="category tag">ข่าวทั่วไป</a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!--info--> </div> </article><!-- #post-## --><article id="post-1634" class="seed-col post-1634 post type-post status-publish format-standard has-post-thumbnail hentry category-eat-news"> <div class="content-item -list"> <div class="pic"> <a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2-2/" title="Permalink to ข่าวประชาสัมพันธ์" rel="bookmark"> <img width="150" height="100" src="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg 150w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-768x510.jpg 768w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432.jpg 1568w" sizes="(max-width: 150px) 100vw, 150px" /> </a> </div><!--pic--> <div class="info"> <header class="entry-header"> <h2 class="entry-title"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2-2/" rel="bookmark">ข่าวประชาสัมพันธ์</a></h2> <div class="entry-meta"> <span class="posted-on"><i class="si-clock"></i><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2-2/" rel="bookmark"><time class="entry-date published" datetime="2017-08-08T10:18:02+00:00">สิงหาคม 8, 2017</time><time class="updated" datetime="2018-09-10T02:32:00+00:00">กันยายน 10, 2018</time></a></span><span class="byline"><span class="author vcard"><i class="si-user"></i><a class="url fn n" href="https://maet.eat.kmutnb.ac.th/author/aa/">isoft</a></span></span><span class="cat-links"><i class="si-folder"></i><a href="https://maet.eat.kmutnb.ac.th/category/eat-news/" rel="category tag">ข่าวทั่วไป</a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!--info--> </div> </article><!-- #post-## --><article id="post-1632" class="seed-col post-1632 post type-post status-publish format-standard has-post-thumbnail hentry category-eat-news"> <div class="content-item -list"> <div class="pic"> <a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2/" title="Permalink to ข่าวประชาสัมพันธ์" rel="bookmark"> <img width="150" height="100" src="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg 150w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-768x510.jpg 768w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432.jpg 1568w" sizes="(max-width: 150px) 100vw, 150px" /> </a> </div><!--pic--> <div class="info"> <header class="entry-header"> <h2 class="entry-title"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2/" rel="bookmark">ข่าวประชาสัมพันธ์</a></h2> <div class="entry-meta"> <span class="posted-on"><i class="si-clock"></i><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7-2/" rel="bookmark"><time class="entry-date published" datetime="2017-08-08T10:17:37+00:00">สิงหาคม 8, 2017</time><time class="updated" datetime="2018-09-10T02:32:00+00:00">กันยายน 10, 2018</time></a></span><span class="byline"><span class="author vcard"><i class="si-user"></i><a class="url fn n" href="https://maet.eat.kmutnb.ac.th/author/aa/">isoft</a></span></span><span class="cat-links"><i class="si-folder"></i><a href="https://maet.eat.kmutnb.ac.th/category/eat-news/" rel="category tag">ข่าวทั่วไป</a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!--info--> </div> </article><!-- #post-## --><article id="post-1630" class="seed-col post-1630 post type-post status-publish format-standard has-post-thumbnail hentry category-eat-news"> <div class="content-item -list"> <div class="pic"> <a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7/" title="Permalink to ข่าวประชาสัมพันธ์" rel="bookmark"> <img width="150" height="100" src="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-150x100.jpg 150w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432-768x510.jpg 768w, https://maet.eat.kmutnb.ac.th/wp-content/uploads/2016/02/S__40714432.jpg 1568w" sizes="(max-width: 150px) 100vw, 150px" /> </a> </div><!--pic--> <div class="info"> <header class="entry-header"> <h2 class="entry-title"><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7/" rel="bookmark">ข่าวประชาสัมพันธ์</a></h2> <div class="entry-meta"> <span class="posted-on"><i class="si-clock"></i><a href="https://maet.eat.kmutnb.ac.th/%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b-1-7/" rel="bookmark"><time class="entry-date published" datetime="2017-08-08T10:17:14+00:00">สิงหาคม 8, 2017</time><time class="updated" datetime="2018-09-10T02:32:01+00:00">กันยายน 10, 2018</time></a></span><span class="byline"><span class="author vcard"><i class="si-user"></i><a class="url fn n" href="https://maet.eat.kmutnb.ac.th/author/aa/">isoft</a></span></span><span class="cat-links"><i class="si-folder"></i><a href="https://maet.eat.kmutnb.ac.th/category/eat-news/" rel="category tag">ข่าวทั่วไป</a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!--info--> </div> </article><!-- #post-## --></aside></aside><!-- #secondary --> </div><!--container--> </div><!--site-content--> <aside id="footbar" class="site-footbar"> <div class="container"> <section id="siteorigin-panels-builder-2" class="widget widget_siteorigin-panels-builder"><div id="pl-w5c001835c70a2" class="panel-layout" ><div id="pg-w5c001835c70a2-0" class="panel-grid panel-has-style" ><div class="siteorigin-panels-stretch panel-row-style panel-row-style-for-w5c001835c70a2-0" id="_desktop" data-stretch-type="full" ><div id="pgc-w5c001835c70a2-0-0" class="panel-grid-cell" ><div id="panel-w5c001835c70a2-0-0-0" class="so-panel widget widget_sow-editor panel-first-child panel-last-child" data-index="0" ><div class="so-widget-sow-editor so-widget-sow-editor-base"> <div class="siteorigin-widget-tinymce textwidget"> <h3><span style="color: #999999;">แนะนำหน่วยงาน </span></h3> <h5> <a href="https://eat.kmutnb.ac.th/about/" target="_blank" rel="noopener"> <span style="color: #999999; line-height: 1.8;">ประวัติคณะฯ <br /> </span> </a> <a href="https://eat.kmutnb.ac.th/%E0%B8%84%E0%B8%93%E0%B8%B0%E0%B8%9C%E0%B8%B9%E0%B9%89%E0%B8%9A%E0%B8%A3%E0%B8%B4%E0%B8%AB%E0%B8%B2%E0%B8%A3/" target="_blank" rel="noopener"> <span style="color: #999999; line-height: 1.8;">คณะผู้บริหาร<br /> </span> </a> <a href="https://maet.eat.kmutnb.ac.th/eatkkk/%E0%B8%84%E0%B8%93%E0%B8%B2%E0%B8%88%E0%B8%B2%E0%B8%A3%E0%B8%A2%E0%B9%8C/" target="_blank" rel="noopener"> <span style="color: #999999; line-height: 1.8;">คณาจารย์<br /> </span> </a> <a href="https://eat.kmutnb.ac.th/%E0%B8%AA%E0%B8%B3%E0%B8%99%E0%B8%B1%E0%B8%81%E0%B8%87%E0%B8%B2%E0%B8%99%E0%B8%84%E0%B8%93%E0%B8%9A%E0%B8%94%E0%B8%B5/" target="_blank" rel="noopener"> <span style="color: #999999; line-height: 1.8;">เจ้าหน้าที่<br /> </span> </a> <a href="#" target="_blank" rel="noopener"> <span style="color: #999999; line-height: 1.8;">ข้อมูลนักศึกษา<br /> </span> </a> </h5></div> </div></div></div><div id="pgc-w5c001835c70a2-0-1" class="panel-grid-cell" ><div id="panel-w5c001835c70a2-0-1-0" class="so-panel widget widget_sow-editor panel-first-child panel-last-child" data-index="1" ><div class="so-widget-sow-editor so-widget-sow-editor-base"> <div class="siteorigin-widget-tinymce textwidget"> <h3><span style="color: #999999;">หลักสูตรที่เปิดสอน</span></h3> <div style="line-height: 30px;"> <h5> <a href="https://cpet.eat.kmutnb.ac.th/" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">เทคโนโลยีวิศวกรรมกระบวนการเคมี (วศ.บ.)<br /></span> </a> <a href="https://maet.eat.kmutnb.ac.th/" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">เทคโนโลยีวิศวกรรมเครื่องกลและยานยนต์ (วศ.บ.)<br /></span> </a> <a href="https://ilet.eat.kmutnb.ac.th/" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">เทคโนโลยีวิศวกรรมอุตสาหการและโลจิสติกส์ (วศ.บ.)<br /></span> </a> <a href="https://mpet.eat.kmutnb.ac.th/" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">เทคโนโลยีวิศวกรรมกระบวนการผลิต (วศ.บ.)<br /></span> </a> <a href="https://iaet.eat.kmutnb.ac.th/" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">เทคโนโลยีวิศวกรรมการวัดคุมและอัตโนมัติ (วศ.บ.)<br /></span> </a> </h5> </div></div> </div></div></div><div id="pgc-w5c001835c70a2-0-2" class="panel-grid-cell" ><div id="panel-w5c001835c70a2-0-2-0" class="so-panel widget widget_sow-editor panel-first-child panel-last-child" data-index="2" ><div class="so-widget-sow-editor so-widget-sow-editor-base"> <div class="siteorigin-widget-tinymce textwidget"> <h3><span style="color: #999999;">หน่วยงานที่เกี่ยวข้อง</span></h3> <h5> <a href="https://www.kmutnb.ac.th" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">มหาวิทยาลัยเทคโนโลยีพระจอมเกล้าพระนครเหนือ<br /></span> </a> <a href="https://eat.kmutnb.ac.th" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">คณะวิศวกรรมศาสตร์และเทคโนโลยี<br /></span> </a> <a href="http://rayong.op.kmutnb.ac.th/" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">กองงาน มจพ.วิทยาเขตระยอง<br /></span> </a> <a href="http://icit.kmutnb.ac.th/main/" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">สำนักคอมพิวเตอร์และเทคโนโลยีสารสนเทศ<br /></span> </a> <a href="http://www.tgde.kmutnb.ac.th" rel="noopener" target="_blank"> <span style="color: #999999; line-height: 1.8;">สถาบันสหกิจศึกษาและพัฒนาสื่ออิเล็กทรอนิกส์ไทย-เยอรมัน<br /></span> </a> </h5></div> </div></div></div><div id="pgc-w5c001835c70a2-0-3" class="panel-grid-cell" ><div id="panel-w5c001835c70a2-0-3-0" class="so-panel widget widget_sow-editor panel-first-child panel-last-child" data-index="3" ><div class="so-widget-sow-editor so-widget-sow-editor-base"> <div class="siteorigin-widget-tinymce textwidget"> <h3><span style="color: #999999;">รับข่าวสารจากเราได้ที่  </span></h3> <p><a href="https://www.facebook.com/EAT.Kmutnb/" target="_blank" rel="noopener"><img class="size-full wp-image-1042 alignleft" src="https://eat.kmutnb.ac.th/wp-content/uploads/2018/09/i-foot_facebook.png" alt="" width="35" height="35" /></a><a href="https://www.youtube.com/?gl=TH" target="_blank" rel="noopener"><img class="size-medium wp-image-1044 alignleft" src="https://eat.kmutnb.ac.th/wp-content/uploads/2018/09/i-foot_youtube.png" alt="" width="35" height="35" /></a><a href="https://goo.gl/maps/4A1stsDVhLo"><img class="size-full wp-image-2013 alignleft" src="https://maet.eat.kmutnb.ac.th/wp-content/uploads/2018/09/i-foot_gmap.png" alt="" width="35" height="35" /></a><a href="http://line.me/ti/p/%40yourid" target="_blank" rel="noopener"><img class="size-medium wp-image-1043 alignleft" src="https://eat.kmutnb.ac.th/web2018/wp-content/uploads/2018/09/i-foot_line.png" alt="" width="35" height="35" /></a></p> </div> </div></div></div></div></div><div id="pg-w5c001835c70a2-1" class="panel-grid panel-has-style" ><div class="lsow-row siteorigin-panels-stretch panel-row-style panel-row-style-for-w5c001835c70a2-1" data-stretch-type="full-stretched" ><div id="pgc-w5c001835c70a2-1-0" class="panel-grid-cell" ><div id="panel-w5c001835c70a2-1-0-0" class="so-panel widget widget_sow-editor panel-first-child panel-last-child" data-index="4" ><div class="panel-widget-style panel-widget-style-for-w5c001835c70a2-1-0-0" ><div class="so-widget-sow-editor so-widget-sow-editor-base"> <div class="siteorigin-widget-tinymce textwidget"> <hr /> <h5 style="text-align: center;"><strong><span style="color: #ffffff;">Copyright © 2018-2020 MAET FACULTY OF ENGINEERING AND TECHNOLOGY. All Rights Reserved </span></strong></h5> </div> </div></div></div></div></div></div></div></section> </div> </aside><!--site-footbar--> </div><!--site-canvas--> </div><!--#page--> <div id="blueimp-gallery" class="blueimp-gallery"> <div class="slides"></div> <h3 class="title"></h3> <a class="prev">‹</a> <a class="next">›</a> <a class="close">×</a> <a class="play-pause"></a> <ol class="indicator"></ol> </div> <div id="blueimp-gallery-fullscreen" class="blueimp-gallery" data-full-screen="true"> <div class="slides"></div> <h3 class="title"></h3> <a class="prev">‹</a> <a class="next">›</a> <a class="close">×</a> <a class="play-pause"></a> <ol class="indicator"></ol> </div> <style type="text/css" media="all" id="siteorigin-panels-layouts-footer">/* Layout w5bfc3b01dcbab */ #pgc-w5bfc3b01dcbab-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-w5bfc3b01dcbab #panel-w5bfc3b01dcbab-0-0-0 { margin:0px 0px 0px 0px } #pg-w5bfc3b01dcbab-0 , #pl-w5bfc3b01dcbab .so-panel { margin-bottom:30px } #pgc-w5bfc3b01dcbab-1-0 { width:42.0059%;width:calc(42.0059% - ( 0.57994108305151 * 30px ) ) } #pgc-w5bfc3b01dcbab-1-1 { width:57.9941%;width:calc(57.9941% - ( 0.42005891694849 * 30px ) ) } #pl-w5bfc3b01dcbab #panel-w5bfc3b01dcbab-1-1-0 { margin:0px -50px 0px 0px } #pl-w5bfc3b01dcbab .so-panel:last-child { margin-bottom:0px } #pg-w5bfc3b01dcbab-0> .panel-row-style , #panel-w5bfc3b01dcbab-0-0-0> .panel-widget-style { background-color:#2f2f2f;padding:0px 0px 0px 0px } #pg-w5bfc3b01dcbab-0.panel-no-style, #pg-w5bfc3b01dcbab-0.panel-has-style > .panel-row-style , #pg-w5bfc3b01dcbab-1.panel-no-style, #pg-w5bfc3b01dcbab-1.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } #pg-w5bfc3b01dcbab-1> .panel-row-style { background-color:#232323;padding:0px 0px 0px -200px } #panel-w5bfc3b01dcbab-1-1-0> .panel-widget-style { padding:0px 0px 0px 0px } @media (max-width:780px){ #pg-w5bfc3b01dcbab-0.panel-no-style, #pg-w5bfc3b01dcbab-0.panel-has-style > .panel-row-style , #pg-w5bfc3b01dcbab-1.panel-no-style, #pg-w5bfc3b01dcbab-1.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-w5bfc3b01dcbab-0 .panel-grid-cell , #pg-w5bfc3b01dcbab-1 .panel-grid-cell { margin-right:0 } #pg-w5bfc3b01dcbab-0 .panel-grid-cell , #pg-w5bfc3b01dcbab-1 .panel-grid-cell { width:100% } #pgc-w5bfc3b01dcbab-1-0 { margin-bottom:30px } #pl-w5bfc3b01dcbab .panel-grid-cell { padding:0 } #pl-w5bfc3b01dcbab .panel-grid .panel-grid-cell-empty { display:none } #pl-w5bfc3b01dcbab .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px } #pg-w5bfc3b01dcbab-0> .panel-row-style , #panel-w5bfc3b01dcbab-1-1-0> .panel-widget-style { padding:0px 0px 0px 0px } } /* Layout w5c001835c70a2 */ #pgc-w5c001835c70a2-0-0 { width:15.6869%;width:calc(15.6869% - ( 0.84313056694472 * 30px ) ) } #pl-w5c001835c70a2 #panel-w5c001835c70a2-0-0-0 , #pl-w5c001835c70a2 #panel-w5c001835c70a2-0-1-0 , #pl-w5c001835c70a2 #panel-w5c001835c70a2-0-2-0 , #pl-w5c001835c70a2 #panel-w5c001835c70a2-0-3-0 { } #pgc-w5c001835c70a2-0-1 { width:29.3255%;width:calc(29.3255% - ( 0.70674501625901 * 30px ) ) } #pgc-w5c001835c70a2-0-2 { width:33.2371%;width:calc(33.2371% - ( 0.66762865827795 * 30px ) ) } #pgc-w5c001835c70a2-0-3 { width:21.7504%;width:calc(21.7504% - ( 0.78249575851831 * 30px ) ) } #pg-w5c001835c70a2-0 { margin-bottom:-10px } #pgc-w5c001835c70a2-1-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-w5c001835c70a2 #panel-w5c001835c70a2-1-0-0 { margin:0px 0px 0px 0px } #pl-w5c001835c70a2 .so-panel { margin-bottom:30px } #pl-w5c001835c70a2 .so-panel:last-child { margin-bottom:0px } #pg-w5c001835c70a2-0> .panel-row-style { background-color:#000000;padding:35px 10px 10px 10px } #pg-w5c001835c70a2-0.panel-no-style, #pg-w5c001835c70a2-0.panel-has-style > .panel-row-style , #pg-w5c001835c70a2-1.panel-no-style, #pg-w5c001835c70a2-1.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } #pg-w5c001835c70a2-1> .panel-row-style { background-color:#000000;padding:-50px 0px 10px 0px } #panel-w5c001835c70a2-1-0-0> .panel-widget-style { background-color:#000000;padding:-60px 0px 0px 0px } @media (max-width:960px){ #pg-w5c001835c70a2-1 .lsow-row { padding-top:-30px } } @media (max-width:780px){ #pg-w5c001835c70a2-0.panel-no-style, #pg-w5c001835c70a2-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-w5c001835c70a2-0 .panel-grid-cell , #pg-w5c001835c70a2-1 .panel-grid-cell { margin-right:0 } #pg-w5c001835c70a2-0 .panel-grid-cell , #pg-w5c001835c70a2-1 .panel-grid-cell { width:100% } #pgc-w5c001835c70a2-0-0 , #pgc-w5c001835c70a2-0-1 , #pgc-w5c001835c70a2-0-2 { margin-bottom:30px } #pg-w5c001835c70a2-1.panel-no-style, #pg-w5c001835c70a2-1.panel-has-style > .panel-row-style { -webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse } #pl-w5c001835c70a2 .panel-grid-cell { padding:0 } #pl-w5c001835c70a2 .panel-grid .panel-grid-cell-empty { display:none } #pl-w5c001835c70a2 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px } #pg-w5c001835c70a2-1> .panel-row-style { padding:-50px 0px 0px 0px } #panel-w5c001835c70a2-1-0-0> .panel-widget-style { padding:-60px 0px 0px 0px } } </style><link rel='stylesheet' id='siteorigin-panels-front-css' href='https://maet.eat.kmutnb.ac.th/wp-content/plugins/siteorigin-panels/css/front-flex.min.css?ver=2.9.7' type='text/css' media='all' /> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/blueimp-lightbox/js/blueimp-gallery.js?ver=1.0.0'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/blueimp-lightbox/js/blueimp-gallery-indicator.js?ver=1.0.0'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/blueimp-lightbox/js/blueimp-gallery-fullscreen.js?ver=1.0.0'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/blueimp-lightbox/js/blueimp-gallery-video.js?ver=1.0.0'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/blueimp-lightbox/js/blueimp-gallery-vimeo.js?ver=1.0.0'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/blueimp-lightbox/js/blueimp-gallery-youtube.js?ver=1.0.0'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/blueimp-lightbox/js/jquery.blueimp-gallery.js?ver=1.0.0'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/livemesh-siteorigin-widgets/assets/js/modernizr-custom.min.js?ver=2.5.1'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/livemesh-siteorigin-widgets/assets/js/jquery.waypoints.min.js?ver=2.5.1'></script> <script type='text/javascript'> /* <![CDATA[ */ var lsow_settings = {"mobile_width":"780","custom_css":""}; /* ]]> */ </script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/livemesh-siteorigin-widgets/assets/js/lsow-frontend.min.js?ver=2.5.1'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/seed-social/seed-social.js?ver=2016-1'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/themes/plant/js/main.min.js?ver=2017-1'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/themes/ongkorn/js/main.js?ver=2017-1'></script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-includes/js/wp-embed.min.js?ver=5.0.11'></script> <script type='text/javascript'> /* <![CDATA[ */ var panelsStyles = {"fullContainer":"body"}; /* ]]> */ </script> <script type='text/javascript' src='https://maet.eat.kmutnb.ac.th/wp-content/plugins/siteorigin-panels/js/styling-297.min.js?ver=2.9.7'></script> </body> </html>