Blog

Latest Articles

Browse the latest tutorials, guides, and practical examples across Linux, DevOps, security, databases, and programming on GoLinuxCloud.

Explore the latest tutorials and guides across Linux, DevOps, programming, and more.

You can also browse content by category below:

  • Linux: Commands, administration, troubleshooting, and system operations
  • DevOps: CI/CD, Kubernetes, containers, and automation
  • Programming: Coding tutorials, scripting, and development concepts
  • Security: Ethical hacking, system security, and best practices
  • Databases: MySQL, MariaDB, PostgreSQL, and database management
  • Networking: Network setup, troubleshooting, and protocols
  • Storage: Disk management, file systems, and storage solutions
  • System Administration: User management, services, and system-level tasks
  • Tools: Useful tools and utilities for productivity
  • Cheat Sheet: Quick reference guides for commands and tools
  • Interview Questions: Common interview questions with answers

2076 articles

Using JavaScript function as Values [SOLVED]

In JavaScript, functions are first-class citizens, which means that they can be treated like any other value in the language. This means that you can assign

By olorunfemiakinlua · 3 min read · programming

How to use spread operator in JavaScript? [SOLVED]

The spread operator is a feature of JavaScript that allows an iterable (such as an array or a string) to be expanded, or "spread," into individual elements.

By olorunfemiakinlua · 6 min read · programming

JavaScript Destructuring [In-Depth Tutorial]

JavaScript destructuring is a powerful feature that allows developers to extract values from objects and arrays and assign them to variables. It can greatly

By olorunfemiakinlua · 9 min read · programming

How to use JavaScript Arguments? [SOLVED]

When we create functions, they may take in certain inputs that the code block within them works with to return values. These inputs are called arguments.

By olorunfemiakinlua · 5 min read · programming

JavaScript Arrow Function [In-Depth Tutorial]

Javascript arrow function expression has a shorter syntax compared to function expressions and does not bind its own this, arguments, super, or new.target. …

By olorunfemiakinlua · 6 min read · programming

Convert Array to String in JavaScript [SOLVED]

There are different methods available to convert array to string in Javascript using 1. Using the toString() method, 2. Using the join() method, 3. Using the …

By olorunfemiakinlua · 5 min read · programming

How to write logs to file in Golang? [SOLVED]

In this tutorial, we will learn how to write logs to file in Golang. We have several ways to save the application log to specific files: we can use the

By tuannguyen · 5 min read · programming