DEV Community

Cover image for Day 79/100 Tables
Rio Cantre
Rio Cantre

Posted on • Originally published at dev.to

Day 79/100 Tables

Everything seems pretty daunting but when I set my mind on the table and focused on the structures, I somehow understood the reason why it should be use according to it's functions and modifications.

Tables

Code Snippets

<table>
  <tr>
    <th>Monday</th>
    <th>Tuesday</th>
    <th>Wednesday</th>
  </tr>
  <tr>
    <td colspan="2">Out of Town</td>
    <td>Back in Town</td>
  </tr>
</table>
Enter fullscreen mode Exit fullscreen mode
let box1Name = "";
let box2Name = 0;
const box = "Package";

box1Name = box[0];
box2Name = box.length;
Enter fullscreen mode Exit fullscreen mode

Resource

Top comments (0)