- Write a function that takes an array of numbers and returns an array of strings
function stringItUp(arr){
// your code here
}
console.log(stringItUp([2, 5, 100])); // ["2", "5", "100"]| tes |
function stringItUp(arr){
// your code here
}
console.log(stringItUp([2, 5, 100])); // ["2", "5", "100"]| const axios = require('axios'); | |
| const getapa = async () => { | |
| try { | |
| let response = await axios.get('https://jsonplaceholder.typicode.com/users'); | |
| return response | |
| } catch (error) { | |
| throw new Error(error) | |
| } | |
| } |
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "os" | |
| "os/signal" | |
| "time" | |
| ) |
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "time" | |
| ) | |
| func returnRandom(value int) string { |
| repo-groups | |
| https://docs.atlassian.com/bitbucket-server/rest/5.2.1/bitbucket-rest.html#idm45701776441776 | |
| https://docs.atlassian.com/bitbucket-server/rest/5.2.1/bitbucket-rest.html#idm45701776450800 | |
| /REST/API/1.0/PROJECTS/{PROJECTKEY}/REPOS/{REPOSITORYSLUG}/PERMISSIONS/GROUPS?PERMISSION&NAME | |
| Promote or demote a group's permission level for the specified repository. Available repository permissions are: | |
| * REPO_READ | |
| * REPO_WRITE | |
| * REPO_ADMIN |
| package logger | |
| import ( | |
| "log" | |
| "os" | |
| "github.com/fatih/color" | |
| ) | |
| var ( |
| package main | |
| import ( | |
| "io/ioutil" | |
| "gopkg.in/yaml.v2" | |
| ) | |
| type config struct { | |
| APIVersion string `yaml:"apiVersion"` |
| package main | |
| import ( | |
| "fmt" | |
| billy "github.com/go-git/go-billy/v5" | |
| memfs "github.com/go-git/go-billy/v5/memfs" | |
| git "github.com/go-git/go-git/v5" | |
| config "github.com/go-git/go-git/v5/config" | |
| http "github.com/go-git/go-git/v5/plumbing/transport/http" |
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| "sync" | |
| ) | |
| type HttpResult struct { | |
| Url string |