MySQL complete course for beginners https://www.youtube.com/playlist?list=PLcGjb_nf4rNwjUe74arheIyIRJqdIjh1B
Signed kishan

Channel
@javascript_Programming
On this record: Growth · Engagement · Posts · Cite this entry
26,882subscribers
-199 since we began measuring on 6 August 2026
Risers and fallers across the register · movement among entries of 10,000–31,623.
| Telegram ID | -1001255116679 |
|---|---|
| Type | Channel |
| Username | @javascript_Programming |
| Created | Between 1 March 2018 and 26 July 2019— estimated from Telegram’s id allocation, not measured. How this range is calculated. |
| First recorded | 6 August 2026 |
| Last confirmed live | 25 August 2026 |
| Measurements held | 17 |
| Confirmed unchanged | 1 time, most recently 25 August 2026 |
| On Telegram | t.me/javascript_Programming |
| Measured (UTC) | Subscribers | Change |
|---|---|---|
| 25 Aug 2026, 13:33 | 26,882 | -11 |
| 24 Aug 2026, 12:42 | 26,893 | -19 |
| 22 Aug 2026, 16:53 | 26,912 | -10 |
| 21 Aug 2026, 09:15 | 26,922 | +1 |
| 20 Aug 2026, 10:55 | 26,921 | -7 |
| 19 Aug 2026, 11:07 | 26,928 | -15 |
| 18 Aug 2026, 11:42 | 26,943 | -12 |
| 17 Aug 2026, 13:07 | 26,955 | -20 |
| 16 Aug 2026, 05:53 | 26,975 | -28 |
| 14 Aug 2026, 14:34 | 27,003 | -13 |
| 12 Aug 2026, 10:59 | 27,016 | -21 |
| 11 Aug 2026, 10:23 | 27,037 | -10 |
| 10 Aug 2026, 07:48 | 27,047 | -9 |
| 9 Aug 2026, 05:03 | 27,056 | -9 |
| 8 Aug 2026, 01:32 | 27,065 | -7 |
| 7 Aug 2026, 03:35 | 27,072 | -9 |
| 6 Aug 2026, 17:45 | 27,081 | first reading |
20 posts held, back to 26 July 2019 — the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 40 pagesof Telegram’s post history, 20 posts per page.
Nothing published in the last 30 days. ERR and ER are rolling 30-day measures, so there is nothing to compute — we hold 20 posts for this entry, the most recent from 10 October 2023. An engagement rate over an empty window would be a number about nothing.
MySQL complete course for beginners https://www.youtube.com/playlist?list=PLcGjb_nf4rNwjUe74arheIyIRJqdIjh1B
Signed kishan
Webscraping of flipkart product using node js with practical example. https://youtu.be/_Q0EMB1McXE Please like, share and subscribe
Signed kishan
https://youtu.be/osLDmH6KBmQ Explore detailed insight of tree shaking in javascript to boost your application 10x times faster.
Signed kishan
Javascript Tutorial: https://www.youtube.com/watch?v=wm6LNo6715o&list=PLcGjb_nf4rNwdtG7JP0j0qcgAZ74b4-5A Node js tutorail: https://www.youtube.com/watch?v=XkpbjI_GyJo&list=PLcGjb_nf4rNxR1eCFakb_-4TUA4FCOW9q
Signed kishan
46. Write a JavaScript program to check two given non-negative integers that whether one of the number (not both) is multiple of 7 or 11. function valCheck (a, b) { if (!((a % 7 == 0 || a % 11 == 0) && (b % 7 == 0 || b % 11 == 0))) { return ((a % 7 == 0 || a % 11 == 0) || (b % 7 == 0 || b % 11 == 0)); } else return false; } console.log(valCheck(14, 21)); console.log(valCheck(14, 20)); console.log(valCheck(16, 20));
Signed Kishan
45. Write a JavaScript program to check two given integer values and return true if one of the number is 15 or if their sum or difference is 15. function test_number(x, y) { return (x === 15 || y === 15 || x + y === 15 || Math.abs(x - y) === 15); } console.log(test_number(15, 9)); console.log(test_number(25, 15)); console.log(test_number(7, 8)); console.log(test_number(25, 10)); console.log(test_number(5, 9)); …
Signed Kishan
44. Write a JavaScript program to check from three given integers that whether a number is greater than or equal to 20 and less than one of the others. function lessby20_others(x, y, z) { return (x >= 20 && (x < y || x < z)) || (y >= 20 && (y < x || y < z)) || (z >= 20 && (z < y || z < x)); } console.log(lessby20_others(23, 45, 10)); console.log(lessby20_others(23, 23, 10)); console.log(lessby20_others(21, 66, 75));
Signed Kishan Rami
43. Write a JavaScript program to check from three given numbers (non negative integers) that two or all of them have the same rightmost digit. function same_last_digit(p, q, r) { return (p % 10 === q % 10) || (p % 10 === r % 10) || (q % 10 === r % 10); } console.log(same_last_digit(22,32,42)); console.log(same_last_digit(102,302,2)); console.log(same_last_digit(20,22,45));
Signed Kishan Rami
42. Write a JavaScript program to check whether three given numbers are increasing in strict mode or in soft mode. function number_order(x, y, z ) { if ( y > x && z > y) { return "strict mode"; } else if(z > y) return "Soft mode"; else return "Undefinded"; } console.log(number_order(10,15,31)); console.log(number_order(24,22,31)); console.log(number_order(50,21,15));
Signed Kishan Rami
Lockdown extended till 3rd May 2020 Be safe and Stay at home
Signed Kishan Rami
40. Write a JavaScript program to check from two given integers whether one of them is 8 or their sum or difference is 8. function check8(x, y) { if (x == 8 || y == 8) { return true; } if (x + y == 8 || Math.abs(x - y) == 8) { return true; } return false; } console.log(check8(7, 8)); console.log(check8(16, 8)); console.log(check8(24, 32)); console.log(check8(17, 18));
Signed Kishan Rami
39. Write a JavaScript program to compute the sum of the two given integers, If the sum is in the range 50..80 return 65 other wise return 80 function sortaSum(x, y) { const sum_nums = x + y; if (sum_nums >= 50 && sum_nums <= 80) { return 65; } return 80; } console.log(sortaSum(30,20)); console.log(sortaSum(90,80));
Signed Kishan Rami
Showing the 12 most recent of 20 posts we hold for @javascript_Programming. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked ≈ was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.
A live page changes as we take new readings, so a citation should name the measurement it is based on, not just the URL. The line below cites the subscriber count as measured 25 August 2026 — this entry's latest reading, not the date you are reading this.
“JavaScript Tutorials” (@javascript_Programming), 26,882 subscribers as measured 25 August 2026. Telegram Register, tgregister.com/channel/javascript_Programming.
Full measurement history, CC BY 4.0. Every reading this register holds for this entry, not just the latest one, as a dated, downloadable record: CSV · JSON. Free to use with attribution to tgregister.com. Each file carries its own generation timestamp, which is the figure to cite for exactly when the data was retrieved.