Rushabhi Posted April 14, 2023 Report Posted April 14, 2023 Maaku banned for work. Only entertainment/experimentation ki vadochu Quote
Pahelwan2 Posted April 14, 2023 Report Posted April 14, 2023 Can it write sort filter map reduce code in typescript Quote
Bandar_laddu Posted April 14, 2023 Report Posted April 14, 2023 14 minutes ago, Pahelwan2 said: Can it write sort filter map reduce code in typescript Yes, tried it. Quote
Popular Post Forgive_Me Posted April 14, 2023 Popular Post Report Posted April 14, 2023 calculators ochaka student tables marchipoyaru. . . google ochaka oka engineering students ni 1 inch ku enni mm ante google chesi cheppevadu ippudu chatgpt ochaka, oka medical student ni manishi ki gundekaya ekkada untadhi ante "thalakaya ku kindha, ottakayalaki paina untadhi" ani chepthadu 10 1 Quote
dasari4kntr Posted April 14, 2023 Report Posted April 14, 2023 1 hour ago, Pahelwan2 said: Can it write sort filter map reduce code in typescript easy ga… but you should use it for bigger purpose… i recently used it for…how to create Apollo client to accept multiple http graphql endpoints (bith http and web socket) dynamically using Apollo split.. first it gave me bit bad code …later i asked to optimize…it gave me good one…i took that approach…(not copied entirely..) 2 Quote
Kootami Posted April 14, 2023 Report Posted April 14, 2023 1 hour ago, ramabeer said: Omggg Yup, work is faster with it . Quote
JaiBalayyaaa Posted April 14, 2023 Report Posted April 14, 2023 1 hour ago, Rushabhi said: Maaku banned for work. Only entertainment/experimentation ki vadochu 1 hour ago, *Prince Charming said: Banned for us at work Y Quote
*Prince Charming Posted April 14, 2023 Report Posted April 14, 2023 19 minutes ago, JaiBalayyaaa said: Y Risk of sensitive code getting exposed 2 Quote
Raazu Posted April 14, 2023 Report Posted April 14, 2023 Ask chatgpt to attend the interviews for u 😊 1 Quote
Rushabhi Posted April 14, 2023 Report Posted April 14, 2023 31 minutes ago, dasari4kntr said: easy ga… but you should use it for bigger purpose… i recently used it for…how to create Apollo client to accept multiple http graphql endpoints (bith http and web socket) dynamically using Apollo split.. first it gave me bit bad code …later i asked to optimize…it gave me good one…i took that approach…(not copied entirely..) I am surprised they are allowing at your workplace. Financial domain kadha Quote
dasari4kntr Posted April 14, 2023 Report Posted April 14, 2023 4 minutes ago, Rushabhi said: I am surprised they are allowing at your workplace. Financial domain kadha i accessed it in my mobile...not in office network... thats why i told...i took the approach...not code.. Quote
psycopk Posted April 14, 2023 Report Posted April 14, 2023 2 hours ago, Pahelwan2 said: Can it write sort filter map reduce code in typescript In TypeScript, you can use the `sort`, `filter`, `map`, and `reduce` methods to manipulate arrays. Here's an example that demonstrates how to use these methods: ```typescript let numbers = [4, 2, 5, 1, 3]; // Sort the numbers in ascending order let sortedNumbers = numbers.sort((a, b) => a - b); console.log(sortedNumbers); // [1, 2, 3, 4, 5] // Filter out odd numbers let evenNumbers = numbers.filter(x => x % 2 === 0); console.log(evenNumbers); // [2, 4] // Square each number let squaredNumbers = numbers.map(x => x * x); console.log(squaredNumbers); // [16, 4, 25, 1, 9] // Sum all the numbers let sum = numbers.reduce((acc, x) => acc + x); console.log(sum); // 15 ``` 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.