# Feeling Awesome with the JavaScript Column! - Thanks Glide

**URL:** https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373
**Category:** Ask for Help
**Created:** [July 27, 2022, 6:56pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373 "2022-07-27T18:56:18Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![Dilon\_Perera](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/dilon_perera/32/85652_2.png) [@Dilon\_Perera](https://community.glideapps.com/u/Dilon_Perera)
#### Post date: [July 27, 2022, 6:56pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/1 "2022-07-27T18:56:18Z")

</div>

Hello Community,

How are you’ll everyone? I hope you all are fine!

I’m just experimenting the JavaScript column with some codes while I’m creating Apps and Pages in Glide and thought to share them with you’ll and correct the codes if I’m wrong in somewhere!

* * *

This is my first attempt! :

Getting the Timezone of the device!

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/f/1/f1fc3133aefc2f713086e9c4c9c9760c19d9f12f.png)

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/9/0/903372b94f27ab3d4d75b95e7c303d19fd1ae577.png)

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/4/3/43ec0cb4fca5b8a9d3fd4b97a380a15fa5ab6b2e.png)

This is the code :

```auto
var first = (new Date().toTimeString().slice(9));
var second = (Intl.DateTimeFormat().resolvedOptions().timeZone);
var third = (new Date().getTimezoneOffset() /-60);
var full = first + "," + '\xa0' + second + "," + '\xa0' + third;
return full;

```

* * *

My second attempt ( Part 1 ) :

First Name, dot and Last Name

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/5/8/58db6d5afa5974fba9aa8d00210f4bbcefecc41b.png)

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/9/5/954f9f664e58698352e176515e81e05714f2e18b.png)

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/7/6/768e4ceefa4239b56ab9f3210057801ed1991245.png)

This is the code :

```auto
var first_name = p1;
var first_name_in_capital = first_name.charAt(0).toUpperCase() + first_name.slice(1);
var last_name = p2;
var last_name_in_capital = last_name.charAt(0).toUpperCase();
var Name = first_name_in_capital + "." + last_name_in_capital;
return Name;

```

* * *

My second attempt ( Part 2 ) :

First Name, Last Name and dot

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/1/7/1729647b17631650967338d176d040c5bd3ec63a.png)

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/2/3/23d49806dda8d8b8b089bb38e282afa8ba60996d.png)

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/b/0/b01ee190ede6acff3184a610147e7173a29feb2c.png)

This is the code :

```auto
var first_name = p1;
var first_name_in_capital = first_name.charAt(0).toUpperCase() + first_name.slice(1);
var last_name = p2;
var last_name_in_capital = last_name.charAt(0).toUpperCase();
var Name = first_name_in_capital + "\xa0" + last_name_in_capital + ".";
return Name;

```

* * *

My third attempt :

Get the first letter in a word.

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/8/f/8fd5a90d605af3d40fa82b955ea3a4b559c04e9a.png)

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/e/5/e58bcf5be6a4c6eef9426486907206f2aacd914c.png)

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/a/b/ab345d395a3563bd5f0b4ad8dc35c92ffea9b718.png)

This is the code :

```auto
var value = p1;
var first_letter = value.charAt(0);
return first_letter;

```

When adding these codes add the columns for p1 or p2 or p3 and sometimes two or all!

And also I’m still learning JS in school and not have a much knowledge with it 🤓 If I’m wrong in somewhere please let me know 🙌

I will update this post once I found new things! 🙌

Thanks for reading!

Have a great day!

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [July 27, 2022, 8:03pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/2 "2022-07-27T20:03:49Z")

</div>

Nice choice in sample data. 😉

---

<div class="post-metadata">

### Author: ![gvalero](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/gvalero/32/1037_2.png) [@gvalero](https://community.glideapps.com/u/gvalero)
#### Post date: [July 27, 2022, 8:49pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/3 "2022-07-27T20:49:50Z")

</div>

Welcome to the Code world!! 💪

---

<div class="post-metadata">

### Author: ![11183](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/11183/32/29797_2.png) [@11183](https://community.glideapps.com/u/11183)
#### Post date: [July 27, 2022, 8:58pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/4 "2022-07-27T20:58:40Z")

</div>

I started digging into js all thanks to this column) It’s a wonderful feeling when your function finally works!)

---

<div class="post-metadata">

### Author: ![gvalero](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/gvalero/32/1037_2.png) [@gvalero](https://community.glideapps.com/u/gvalero)
#### Post date: [July 28, 2022, 12:50am UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/5 "2022-07-28T00:50:30Z")

</div>

> This is the code :

```auto
var value = p1;
var first_letter = value.charAt(0);
return first_letter;

```

If you want to have a smaller/faster code, you just need to type …

`return p1.charAt(0) `

Saludos y sigue aprendiendo! 💪

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [July 28, 2022, 1:08am UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/6 "2022-07-28T01:08:51Z")

</div>

One of my favorite types of columns. Allows me to transform data in a variety of ways!

---

<div class="post-metadata">

### Author: ![Dilon\_Perera](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/dilon_perera/32/85652_2.png) [@Dilon\_Perera](https://community.glideapps.com/u/Dilon_Perera)
#### Post date: [December 28, 2022, 4:14pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/7 "2022-12-28T16:14:03Z")

</div>

Oh man! JavaScript is so powerful!!! 💪 🤩

My fourth attempt :

Get the first and last name from a text column without a split text column 🤯

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/8/9/89d6e525eaccb3e1789f500117546e17b20b1c54.png)

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/0/1/0184157c1c43e04d9ab1010464ab70724eb1b6b6.png)

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/f/9/f93ed61f8bfc273dfe1014f6e2a2625a051ef19c.png)

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/1/e/1e399f2ba323481ab2887eb87d5013adec5208c7.png)

The code :

> **First Name**
>
> ```auto
> const fullName = p1;
> const [first, last]= fullName.split(' ');
> return first;
> 
> ```

> **Last Name**
>
> ```auto
> const fullName = p1;
> const [first, last]= fullName.split(' ');
> return last;
> 
> ```

Cheers for Glide and JavaScript 🥂 ❤

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [December 28, 2022, 4:48pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/8 "2022-12-28T16:48:53Z")

</div>

If you want to save some typing, you could do:

```auto
return p1.split(' ')[0]; // first
return p1.split(' ')[1]; // last

```

Although, that would fail (as would your solution) if there happened to be extra spaces between the two names. So a slight improvement on that would be:

```auto
return p1.split(/\s+/)[0]; // first
return p1.split(/\s+/)[1]; // last

```

And then of course you might have folks that also have a middle name. So to make sure you get their _actual_ last name, and not their middle name, you might do something like this:

```auto
return p1.split(/\s+/).pop(); // last

```

That’s probably far enough down the rabbit hole for now 😉

---

<div class="post-metadata">

### Author: ![nathanaelb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/nathanaelb/32/43079_2.png) [@nathanaelb](https://community.glideapps.com/u/nathanaelb)
#### Post date: [December 28, 2022, 4:53pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/9 "2022-12-28T16:53:55Z")

</div>

You are becoming a coder! We might be able to call this the Thinh phenomenon: the more you nocode, the more inclined you are to code.

---

<div class="post-metadata">

### Author: ![Dilon\_Perera](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/dilon_perera/32/85652_2.png) [@Dilon\_Perera](https://community.glideapps.com/u/Dilon_Perera)
#### Post date: [December 28, 2022, 4:57pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/10 "2022-12-28T16:57:10Z")

</div>

Awesome! Thanks Darren! Very much appreciated! I’m still learning about this powerful programming language and thanks for helping me to learn it better!

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [December 29, 2022, 12:04am UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/11 "2022-12-29T00:04:53Z")

</div>

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/b/b/bb05d5ee65ef37507f93b5557dc3a84f150f190c.jpeg)

---

<div class="post-metadata">

### Author: ![Dilon\_Perera](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/dilon_perera/32/85652_2.png) [@Dilon\_Perera](https://community.glideapps.com/u/Dilon_Perera)
#### Post date: [February 26, 2023, 5:10pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/13 "2023-02-26T17:10:18Z")

</div>

Let’s start this by giving a **BIG CHEER FOR _JavaScript_**! 🥳

Give me a _ **J** _ → **J**  
Give me a _ **a** _ → **a**  
Give me a _ **v** _ → **v**  
Give me a _ **a** _ → **a**

* * *

Give me a _ **S** _ → **S**  
Give me a _ **c** _ → **c**  
Give me a _ **r** _ → **r**  
Give me a _ **i** _ → **i**  
Give me a _ **p** _ → **p**  
Give me a _ **t** _ → **t**

* * *

_My Fifth Attempt ( 1st advance code that I wrote by my own with some help in other coder’s codes 😋 )_

**Getting the Sundays as dates of a month!**

1st One :

Get the Sundays as dates of the current month with commas!

> **JS Code**
>
> ```auto
> var d= new Date();
> var dd= d.setMonth(d.getMonth() , 2 );
> var dd = d.toISOString().slice(0, 10);
> var year = d.getFullYear();
> var month = d.getMonth() + 1;
> var d= new Date(year,month,0);
> var n = d.getDate();
> var d = new Date(dd);
> var Sunday = new Date(dd);
> Sunday.setDate(d.getDate() - (d.getDay()||7) +7);
> var get_sunday_date = Sunday.getDate();
> var a = (Sunday.getDate());
> var b = (Sunday.getDate() + 7);
> var c = (Sunday.getDate() + 7 + 7);
> var d = (Sunday.getDate() + 7 + 7 + 7);
> var e = (Sunday.getDate() + 7 + 7 + 7 + 7);
> var get_sunday_month = Sunday.getMonth() + 1;
> if (get_sunday_month < 10) {
> var get_sunday_month = "0" + (Sunday.getMonth() + 1);
> } else {
> var get_sunday_month = Sunday.getMonth() + 1;
> }
> var get_sunday_year = Sunday.getFullYear();
> if (a < 10) {
> var a = "0" + a;
> }
> if (b < 10) {
> var b = "0" + b;
> }
> var a = get_sunday_year + "-" + get_sunday_month + "-" + a;
> var b = get_sunday_year + "-" + get_sunday_month + "-" + b;
> var c = get_sunday_year + "-" + get_sunday_month + "-" + c;
> var d = get_sunday_year + "-" + get_sunday_month + "-" + d;
> var e = get_sunday_year + "-" + get_sunday_month + "-" + e;
> var f = (Sunday.getDate() + 7 + 7 + 7 + 7)
> if (f > n) {
> var all = a + "," + b + "," + c + "," + d;
> } else {
> var all = a + "," + b + "," + c + "," + d + "," + e;
> }
> return all
> 
> ```

> **Preview**
>
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/0/0/002b8ba96d534c959dcc656a96eaf0bd5242afd9.png)  
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/4/2/423825d3bca275ccc4e4f11e7244d6c809924a68.png)

* * *

2nd One :

Get the Sundays as dates of the current month with spaces!

> **JS Code**
>
> ```auto
> var d= new Date();
> var dd= d.setMonth(d.getMonth() , 2 );
> var dd = d.toISOString().slice(0, 10);
> var year = d.getFullYear();
> var month = d.getMonth() + 1;
> var d= new Date(year,month,0);
> var n = d.getDate();
> var d = new Date(dd);
> var Sunday = new Date(dd);
> Sunday.setDate(d.getDate() - (d.getDay()||7) +7);
> var get_sunday_date = Sunday.getDate();
> var a = (Sunday.getDate());
> var b = (Sunday.getDate() + 7);
> var c = (Sunday.getDate() + 7 + 7);
> var d = (Sunday.getDate() + 7 + 7 + 7);
> var e = (Sunday.getDate() + 7 + 7 + 7 + 7);
> var get_sunday_month = Sunday.getMonth() + 1;
> if (get_sunday_month < 10) {
> var get_sunday_month = "0" + (Sunday.getMonth() + 1);
> } else {
> var get_sunday_month = Sunday.getMonth() + 1;
> }
> var get_sunday_year = Sunday.getFullYear();
> if (a < 10) {
> var a = "0" + a;
> }
> if (b < 10) {
> var b = "0" + b;
> }
> var a = get_sunday_year + "-" + get_sunday_month + "-" + a;
> var b = get_sunday_year + "-" + get_sunday_month + "-" + b;
> var c = get_sunday_year + "-" + get_sunday_month + "-" + c;
> var d = get_sunday_year + "-" + get_sunday_month + "-" + d;
> var e = get_sunday_year + "-" + get_sunday_month + "-" + e;
> var f = (Sunday.getDate() + 7 + 7 + 7 + 7)
> if (f > n) {
> var all = a + "\n\n" + b + "\n\n" + c + "\n\n" + d;
> } else {
> var all = a + "\n\n" + b + "\n\n" + c + "\n\n" + d + "\n\n" + e;
> }
> return all
> 
> ```

> **Preview**
>
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/0/3/037e902c7446c67297ca5e741aac20a623307147.png)  
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/0/f/0f0437fb0bf5b66e733721dfc6de03ce37492a2c.png)

* * *

3rd One :

Get the Sundays of the selected date’s month with commas!

> **JS Code**
>
> Same but connect the date column to the JavaScript column with p1! So need to select the Date column for p1 and add p1 in the start of the code inside newDate() brackets!
> 
> ```auto
> var d= new Date(p1);
> var dd= d.setMonth(d.getMonth() , 2 );
> var dd = d.toISOString().slice(0, 10);
> var year = d.getFullYear();
> var month = d.getMonth() + 1;
> var d= new Date(year,month,0);
> var n = d.getDate();
> var d = new Date(dd);
> var Sunday = new Date(dd);
> Sunday.setDate(d.getDate() - (d.getDay()||7) +7);
> var get_sunday_date = Sunday.getDate();
> var a = (Sunday.getDate());
> var b = (Sunday.getDate() + 7);
> var c = (Sunday.getDate() + 7 + 7);
> var d = (Sunday.getDate() + 7 + 7 + 7);
> var e = (Sunday.getDate() + 7 + 7 + 7 + 7);
> var get_sunday_month = Sunday.getMonth() + 1;
> if (get_sunday_month < 10) {
> var get_sunday_month = "0" + (Sunday.getMonth() + 1);
> } else {
> var get_sunday_month = Sunday.getMonth() + 1;
> }
> var get_sunday_year = Sunday.getFullYear();
> if (a < 10) {
> var a = "0" + a;
> }
> if (b < 10) {
> var b = "0" + b;
> }
> var a = get_sunday_year + "-" + get_sunday_month + "-" + a;
> var b = get_sunday_year + "-" + get_sunday_month + "-" + b;
> var c = get_sunday_year + "-" + get_sunday_month + "-" + c;
> var d = get_sunday_year + "-" + get_sunday_month + "-" + d;
> var e = get_sunday_year + "-" + get_sunday_month + "-" + e;
> var f = (Sunday.getDate() + 7 + 7 + 7 + 7)
> if (f > n) {
> var all = a + "," + b + "," + c + "," + d;
> } else {
> var all = a + "," + b + "," + c + "," + d + "," + e;
> }
> return all
> 
> ```

> **Preview**
>
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/3/9/39f0f0f7454d952a87a09ae5efbc4febd1b2e53c.png)
> 
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/a/d/addc8fa3ad4b5c8e7772033c480fafda570c4040.png)  
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/2/7/276f7d73275de0639bee7b3b7a6be54b2bee2112.png)

* * *

4th One :

Get the Sundays of the selected date’s month with spaces!

> **JS Code**
>
> Same but connect the date column to the JavaScript column with p1! So need to select the Date column for p1 and add p1 in the start of the code inside newDate() brackets!
> 
> ```auto
> var d= new Date(p1);
> var dd= d.setMonth(d.getMonth() , 2 );
> var dd = d.toISOString().slice(0, 10);
> var year = d.getFullYear();
> var month = d.getMonth() + 1;
> var d= new Date(year,month,0);
> var n = d.getDate();
> var d = new Date(dd);
> var Sunday = new Date(dd);
> Sunday.setDate(d.getDate() - (d.getDay()||7) +7);
> var get_sunday_date = Sunday.getDate();
> var a = (Sunday.getDate());
> var b = (Sunday.getDate() + 7);
> var c = (Sunday.getDate() + 7 + 7);
> var d = (Sunday.getDate() + 7 + 7 + 7);
> var e = (Sunday.getDate() + 7 + 7 + 7 + 7);
> var get_sunday_month = Sunday.getMonth() + 1;
> if (get_sunday_month < 10) {
> var get_sunday_month = "0" + (Sunday.getMonth() + 1);
> } else {
> var get_sunday_month = Sunday.getMonth() + 1;
> }
> var get_sunday_year = Sunday.getFullYear();
> if (a < 10) {
> var a = "0" + a;
> }
> if (b < 10) {
> var b = "0" + b;
> }
> var a = get_sunday_year + "-" + get_sunday_month + "-" + a;
> var b = get_sunday_year + "-" + get_sunday_month + "-" + b;
> var c = get_sunday_year + "-" + get_sunday_month + "-" + c;
> var d = get_sunday_year + "-" + get_sunday_month + "-" + d;
> var e = get_sunday_year + "-" + get_sunday_month + "-" + e;
> var f = (Sunday.getDate() + 7 + 7 + 7 + 7)
> if (f > n) {
> var all = a + "\n\n" + b + "\n\n" + c + "\n\n" + d;
> } else {
> var all = a + "\n\n" + b + "\n\n" + c + "\n\n" + d + "\n\n" + e;
> }
> return all
> 
> ```

> **Preview**
>
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/3/9/39f0f0f7454d952a87a09ae5efbc4febd1b2e53c.png)
> 
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/a/f/afb0f01cbed38802f147dfeb41fc589e050f57f8.png)  
> ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/8/0/80bc68985771782659148cbd483061a6f2241548.png)

> **A Video to show the preview of 3rd and 4th one's**
>
> [Get the Sundays of the selected date's month - Preview.mp4 - Google Drive](https://drive.google.com/file/d/1p5V1-Td2w-6oTGjjwz4Ts69sFL9xDzzN/view?usp=share_link)

* * *

Hope to write more advance codes like these in future!

As always, JavaScript Gurus let me know if I have done something wrong or modifies! 🙌

Lastly let’s give a **Huge Clap for _JavaScript & Glide_**! 👏 👏

Thank you and Have a great day!

---

<div class="post-metadata">

### Author: ![Dilon\_Perera](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/dilon_perera/32/85652_2.png) [@Dilon\_Perera](https://community.glideapps.com/u/Dilon_Perera)
#### Post date: [March 16, 2023, 4:05pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/14 "2023-03-16T16:05:41Z")

</div>

Oh man… I’m speechless at the moment! 🤐

Glide + JavaScript column = 🔥 🔥 🔥

![](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/e/b/eb7d99777ab3b7afc1a829ea2ac6cae4cd9a00a4.gif)

* * *

_My Sixth Attempt_

Built a simple calendar that shows the dates with week day name of the current month or selected month and the current date is highlighted!

Check it by here : [https://simple-calendar.glide.page](https://simple-calendar.glide.page)

Will share a video and the JS Code(s) shortly!

Have a great day!

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [March 17, 2023, 1:01am UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/15 "2023-03-17T01:01:40Z")

</div>

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/8/0/80e25392ba14fdf2fe1d6324e624c7cc8f6b6dec.png)

I assume you should see something under the buttons, but I’m not seeing anything.

---

<div class="post-metadata">

### Author: ![Dilon\_Perera](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/dilon_perera/32/85652_2.png) [@Dilon\_Perera](https://community.glideapps.com/u/Dilon_Perera)
#### Post date: [March 17, 2023, 6:15am UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/16 "2023-03-17T06:15:19Z")

</div>

Thinh, you should see the dates. Can you try again?

And thanks for checking it!

---

<div class="post-metadata">

### Author: ![Eric\_Penn](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/eric_penn/32/73888_2.png) [@Eric\_Penn](https://community.glideapps.com/u/Eric_Penn)
#### Post date: [March 17, 2023, 12:35pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/17 "2023-03-17T12:35:09Z")

</div>

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/e/8/e884c4b5422bccb46084a2f70f59eff3e9d7807a.jpeg)

Empty here

---

<div class="post-metadata">

### Author: ![CouscousOps](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/couscousops/32/55751_2.png) [@CouscousOps](https://community.glideapps.com/u/CouscousOps)
#### Post date: [March 17, 2023, 1:03pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/18 "2023-03-17T13:03:55Z")

</div>

Thank you for sharing and documenting this 🙌

I keep trying to learn js and I don’t know keep getting stuck. Maybe learning from the Glide community has been the key I’ve been missing in my attempted learnings.

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [March 17, 2023, 2:04pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/19 "2023-03-17T14:04:19Z")

</div>

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/1/9/19b04001380fef91fb2795c0fe847a6f3520a02f.jpeg)

Seems like it’s working on my end, but we’re lacking a 1-2-3-4-5 row?

---

<div class="post-metadata">

### Author: ![Dilon\_Perera](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/dilon_perera/32/85652_2.png) [@Dilon\_Perera](https://community.glideapps.com/u/Dilon_Perera)
#### Post date: [March 17, 2023, 3:17pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/20 "2023-03-17T15:17:29Z")

</div>

Thinh & Eric , could you guys check the app again?

---

<div class="post-metadata">

### Author: ![Dilon\_Perera](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/dilon_perera/32/85652_2.png) [@Dilon\_Perera](https://community.glideapps.com/u/Dilon_Perera)
#### Post date: [March 17, 2023, 3:21pm UTC](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373/21 "2023-03-17T15:21:28Z")

</div>

Your welcome, Rachel! I couldn’t do this without the legends in this forum! Thanks Everyone! 💪 🎉

> [@CouscousOps](#):
>
> Maybe learning from the Glide community has been the key I’ve been missing in my attempted learnings.

And yes, this is actually true. I have learned so many things from these talented humans! Saying thanks again for them!

[Next page](https://community.glideapps.com/t/feeling-awesome-with-the-javascript-column-thanks-glide/45373.md?page=2)
